-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathdfs.cpp
71 lines (58 loc) · 1.4 KB
/
dfs.cpp
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <iostream>
#include<string>
#include<vector>
#include<queue>
#include<math.h>
using namespace std;
vector<vector<int> > nhapDSCanh(int V, int E){
// Do thi (G,E)
vector<vector<int> > dscanh(V+1);
for(int i=0; i<E; i++){
int temp1, temp2;
cin >> temp1 >> temp2;
//{temp1,temp2} la 1 canh cua do thi vo huong G
dscanh[temp1].push_back(temp2);
dscanh[temp2].push_back(temp1);
}
return dscanh;
}
/*Tim kiem theo chieu sau*/
vector<bool> visited;
void explore(int v, vector<vector<int> > &dscanh, int E){
cout << v << " ";
visited[v] = true;
for(int i=0; i<dscanh[v].size(); i++){
if(!visited[dscanh[v].at(i)]){
explore(dscanh[v].at(i),dscanh,E);
}
}
/* Ham explore trong tim kiem theo chieu sau DFS :
explore(G,u):
visited(u) = true
for all edge(u,v) la canh
if visited(v) = false
explore(G,v)
*/
return;
}
void dfs(vector<vector<int> > dscanh, int V, int E, int u){
visited.resize(V+1,false);
for(int i=1; i<=V; i++){
int temp = (i-2+u)%V+1;
if(!visited[temp])
explore(temp,dscanh,E);
}
}
int main()
{
int T;
cin >> T;
while(T>0){
int V, E, u;
cin >> V >> E >> u;
vector<vector<int> > dscanh = nhapDSCanh(V,E);
dfs(dscanh,V,E,u);
T--;
}
return 0;
}