-
Notifications
You must be signed in to change notification settings - Fork 0
/
CON9_06.cpp
48 lines (42 loc) · 951 Bytes
/
CON9_06.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
// Cho đồ thị vô hướng G=<V, E> được biểu diễn dưới dạng danh sách cạnh. Hãy viết thuật toánduyệt theo chiều sâu bắt đầu tại đỉnh u∈V (DFS(u)=?)
/*
1
6 9 5
1 2
1 3
2 3
2 4
3 4
3 5
4 5
4 6
5 6
5 3 1 2 4 6
*/
#include <bits/stdc++.h>
using namespace std;
vector<bool> visited;
void DFS(vector<vector<int>> danhsachke, int u){
visited[u] = true;
cout<<u<<" ";
for (int i : danhsachke[u]){
if(!visited[i]){
DFS(danhsachke, i);
}
}
}
int main(){
int t; cin >> t;
while(t--){
int V, E, u; cin >> V >> E >> u;
visited.resize(V + 1);
fill(visited.begin(), visited.end(), false);
vector<vector<int>> danhsachke(V + 1);
for (int i = 1; i <= E; i++){
int a, b; cin >> a >> b;
danhsachke[a].push_back(b);
danhsachke[b].push_back(a);
}
DFS(danhsachke, u);
}
}