-
Notifications
You must be signed in to change notification settings - Fork 0
/
DFS
56 lines (50 loc) · 1.33 KB
/
DFS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <bits/stdc++.h>
#define f(i,x,y) for (int i = x; i < y; i++)
#define fd(i,x,y) for(int i = x; i>= y; i--)
#define FOR(it,A) for(typeof A.begin() it = A.begin(); it!=A.end(); it++)
#define vint vector<int>
#define ll long long
#define clr(A,x) memset(A, x, sizeof A)
#define pb push_back
#define pii pair<int,int>
#define mp make_pair
#define fst first
#define snd second
#define ones(x) __builtin_popcount(x)
#define eps (1e-9)
#define NOsync ios_base::sync_with_stdio(0)
#define oo (1<<30)
#define OO (1LL<<60)
#define N 1005
using namespace std;
int cant=1;
int rpta=0;
bool vis[N];
int grafo[N][N]; // grafo[i][j]: nodo i y j = 0 marca no unidos, direfente de cero marca unidos
void dfs(int root){
vis[root]= true;
f(i,0,N){
if(grafo[root][i]!=0 && !vis[i]){
cout<<i<<" "; // Imprime el recorrido
dfs(i);
}
}
}
int main(){
f(i,0,N)f(j,0,N)grafo[i][j]=0;
int nodos,aristas,source,a,b;
cout<<"Ingresar la cantidad de nodos: ";
cin>>nodos;
cout<<"Ingresar la cantidad de aristas: ";
cin>>aristas;
f(i,0,aristas){
cin>>a>>b;// Ingresar los nodos unidos
grafo[a][b]=1; // Nodo a apunta a Nodo b
grafo[b][a]=1; // Nodo b apunta a Nodo a
}
int inicio; inicio = 0; cout<<inicio<<" ";
// 0 es el nodo de raiz
dfs(inicio);
cout<<endl;
return 0;
}