-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetectcycleindirectedgraph.cpp
More file actions
104 lines (85 loc) · 1.99 KB
/
detectcycleindirectedgraph.cpp
File metadata and controls
104 lines (85 loc) · 1.99 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include<bits/stdc++.h>
using namespace std;
class Graph
{
int V; // No. of vertices
list<int>*adj; //Pointer to an array containing adjacent
bool isCyclic(int V,bool visited[],bool *rs); //Used by isCyclicUtil
public:
Graph(int V); //Contstructor
void addEdge(int v,int w); //to add an edge to graph
bool isCyclic(); //returns true if there is cycle in this graph
};
Graph::Graph(int V)
{
this->V = V;
adj = new list<int>[V];
}
void Graph::addEdge(int v,int w)
{
adj[v].push_back(w);
}
bool Graph::isCyclicUtil(int v, bool visited[]bool *recStack)
{
if(visited[v] == false)
{
//Mark the current node as visited and part of recursion stack
visited[v] = true;
recStack[v] = true;
//Recur for all the vertices adjacent to this vertex
list<int>::iterator i;
for(int i = adj[v].begin();i!= adj[v].end();++i)
{
if(!visited[*i] && isCyclicUtil(*i,visited,recStack))
{
return true;
}
else if(recStack[*i])
{
return true;
}
}
}
recStack[v] = false;
return false;
}
bool Graph::isCyclic()
{
//Mark all vertices as not visited and not part of recurrsion stack
bool *visited = new bool[V];
bool *recStack = new bool[V];
for(int i=0;i<V;i++)
{
visited[i] = false;
recStack[i] = false;
}
//Call the recursive helper function to detect different DFS trees
for(int i=0;i<V;i++)
{
if(isCyclicUtil(i,visited,recStack))
{
return true;
}
return false;
}
}
int main()
{
//Create a grpah given in the above figure
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);
if(g.isCyclic())
{
cout<<"Graph contains cycle";
}
else
{
cout<<"Graph doesn't contain cycle";
}
return 0;
}