-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDFS.cpp
More file actions
70 lines (67 loc) · 1.03 KB
/
DFS.cpp
File metadata and controls
70 lines (67 loc) · 1.03 KB
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
#include <iostream>
#include <vector>
#include <stack>
using namespace std;
#define MAX 100
int V, E;
bool visited[MAX];
int path[MAX];
vector<int>graph[MAX];
void DFS(int src)
{
for (int i = 0; i < V; i++)
{
visited[i] = false;
path[i] = -1;
}
stack<int>s;
visited[src] = true;
s.push(src);
while (!s.empty())
{
int u = s.top();
s.pop();
for (int i = 0; i < graph[u].size(); i++)
{
int v = graph[u][i];
if (!visited[v])
{
visited[v] = true;
s.push(v);
path[v] = u;
}
}
}
}
void printPathRecursion(int s, int f)
{
if (s == f)
cout << f << " ";
else
{
if (path[f] == -1)
cout << "No Path" << endl;
else
{
printPathRecursion(s, path[f]);
cout << f << " ";
}
}
}
int main()
{
freopen("INPUT.INP", "rt", stdin);
int u, v;
cin >> V >> E;
for (int i = 0; i < E; i++)
{
cin >> u >> v;
graph[u].push_back(v);
graph[v].push_back(u);
}
int s = 0;
int f = 5;
DFS(s);
printPathRecursion(s, f);
return 0;
}