-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathdetectCycleInAnUndirectedGraph.cpp
87 lines (78 loc) · 1.7 KB
/
detectCycleInAnUndirectedGraph.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
85
86
87
// Graph - Detect Cycle in Undirected graph
#include<bits/stdc++.h>
#include<algorithm>
#include<iostream>
using namespace std;
class Graph
{
int V;
list<int> *adj;
bool isCyclicUtill(int v,bool *visited,int parent);
public :
Graph(int V);
void addEdge(int v,int w);
bool isCyclic();
};
Graph::Graph(int V)
{
this->V=V;
adj=new list<int>[V];
}
void Graph::addEdge(int v,int w)
{
adj[v].push_back(w);
adj[w].push_back(v);
}
bool Graph::isCyclicUtill(int v,bool visited[],int parent)
{
visited[v]=true;
list<int>::iterator i;
for(i=adj[v].begin();i!=adj[v].end();i++)
{
if(!visited[*i])
{
if(isCyclicUtill(*i,visited,v))
return true;
}
else if(*i!=parent)
return true;
}
return false;
}
bool Graph::isCyclic()
{
bool *visited=new bool[V];
for(int i=0;i<V;i++)
visited[i]=false;
for(int i=0;i<V;i++)
if(!visited[i])
if(isCyclicUtill(i,visited,-1))
return true;
return false;
}
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);
if(g.isCyclic())
cout<<" Graph contains cycle\n";
else
cout<<" Graph doesn't contain cycle\n";
Graph g1(5);
g1.addEdge(1,0);
g1.addEdge(0,2);
g1.addEdge(2,1);
g1.addEdge(0,3);
g1.addEdge(3,4);
g1.isCyclic()?cout<<" Graph contain cycle\n":cout<<" Graph doesn't contain cycle\n";
Graph g2(3);
g2.addEdge(0,1);
g2.addEdge(1,2);
g2.isCyclic()?cout<<" Graph contain cycle\n":cout<<" Graph doesn't contain cycle\n";
return 0;
}