-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDFS-Graph.Cpp
54 lines (51 loc) · 1015 Bytes
/
DFS-Graph.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
#include<bits/stdc++.h>
using namespace std;
class graph{
int v;
list<int>*adj;
void dfsmake(int s , bool visited[]);
public:
graph(int v);
void addedges(int x ,int y);
void dfs(int s);
};
graph::graph(int v){
this->v = v;
adj = new list<int> [v];
}
void graph :: dfsmake(int s ,bool visited[]){
visited[s] = true;
cout<<s<<" ";
list<int>::iterator i;
for (i = adj[s].begin(); i != adj[s].end(); i++)
{
if (!visited[*i])
{
dfsmake(*i, visited);
}
}
}
void graph :: dfs(int s){
bool *visited = new bool[v];
for(int i = 0; i<v; i++){
visited[i] = false;
}
dfsmake(s , visited);
}
void graph:: addedges(int x ,int y){
adj[x].push_back(y);
}
int main()
{
int v, edges ,x,y,vertex ,i;
cin>>v; //vertex
graph g(v);
cin>>edges ;
for(i=0; i<edges; i++)
{
cin>>x>>y;
g.addedges(x,y);
}
cin>>vertex; // for treverse
g.dfs(vertex);
}