-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdfs.cpp
60 lines (48 loc) · 1.09 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
#include<bits/stdc++.h>
using namespace std;
void adjListGraph(vector<int> adj[], int s, int d){
// undirected graph
adj[s].push_back(d);
adj[d].push_back(s);
}
void dfs(vector<int> adj[], int src, bool vis[]){
vis[src] = true;
cout << src << " ";
for (auto x : adj[src]) {
if (!vis[x]){
dfs(adj, x, vis);
}
}
}
// Iterative dfs
void dfsIterative(vector<int> adj[], int src, bool vis[]){
stack <int> s;
s.push(src);
while (!s.empty()) {
src = s.top();
s.pop();
vis[src] = true;
cout << src << " ";
for (auto x: adj[src]) {
if (!vis[x]) s.push(x);
}
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int v, e;
cin >> v >> e;
vector <int> adj[v];
while (e--) {
int s, d;
cin >> s >> d;
adjListGraph(adj, s, d);
}
int src = 0; // source is node 0
bool vis[v] = {false};
dfs(adj, src, vis); // recursive
cout << endl;
memset(vis, false, sizeof(vis));
dfsIterative (adj, src, vis);
}