-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDFSgraph.cpp
85 lines (60 loc) · 1.54 KB
/
DFSgraph.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
72
73
74
75
76
77
78
79
80
81
82
83
84
// BFS traversal from given source vertex
#include<bits/stdc++.h>
using namespace std;
class Graph{
int v;
list<int> *verList; // array of list is needed
void dfsUtil(int src,bool visited[]);
public:
Graph(int v){
this->v = v;
verList = new list<int>[v];
}
void addEdge(int src,int dest);
void printGraph();
void dfs(int src);
};
void Graph::addEdge(int src,int dest){
verList[src].push_back(dest);
}
void Graph::printGraph(){
for(int i=0;i<v;i++){
list<int>:: iterator iter= verList[i].begin();
while(iter!=verList[i].end()){
cout<<*iter<<" ";
iter ++;
}
cout<<endl;
}
}
/* this is of the member method of the Given Class
.. so it knows the number of vertex
*/
void Graph::dfsUtil(int src,bool visited[]){
visited[src] = true;
cout<<src<<" ";
list<int>:: iterator it;
for( it=verList[src].begin();it!=verList[src].end();it++){
if(!visited[*it])
dfsUtil(*it,visited); // recursive call to next element of the adjacent list
}
}
void Graph::dfs(int src){
// array to check whether the given vertex is visited or not
bool *visited = new bool[v];
for(int i=0;i<v;i++)
visited[i] = false; // no vertex is visited at first
dfsUtil(src,visited);
}
int main(){
Graph g(4);
g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(1, 2);
g.addEdge(2, 0);
g.addEdge(2, 3);
g.addEdge(3, 3);
g.printGraph();
cout<<"DFS Traversal "<<endl;
g.dfs(2);
}