-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDetect_cycle_in_Undirected-Graph-using--DFS.cpp
69 lines (59 loc) · 1.43 KB
/
Detect_cycle_in_Undirected-Graph-using--DFS.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
#include <bits/stdc++.h>
using namespace std;
class Graph
{
private:
int v;
list<int> *graph;
public:
Graph(int v)
{
this->v = v;
graph = new list<int>[v];
}
void addEdge(int e1, int e2)
{
graph[e1].push_back(e2);
graph[e2].push_back(e1);
}
bool detectCycleDFS(int source, int parent, vector<bool> &visited)
{
visited[source] = true;
for (auto current : graph[source])
{
if (!visited[current])
{
if (detectCycleDFS(current, source, visited))
return true;
}
// Checking if the visited vertex is parent or not.
// If it is parent then the vertex and its parent has same value.
// Else there is a loop or cycle present.
else if (current != parent)
return true;
}
return false;
}
};
int main()
{
int v = 4;
Graph g(v);
g.addEdge(0, 1);
g.addEdge(0, 2);
//g.addEdge(1, 2);
//g.addEdge(2, 0);
g.addEdge(2, 3);
//g.addEdge(3, 3);
bool flag = false;
int parent = -1;
vector<bool> visited(v, false);
for (int source = 0; source < v; source++)
if (!visited[source] && g.detectCycleDFS(source, parent, visited))
flag = true;
if (flag)
cout << "Cycle is detected!";
else
cout << "Cycle is not found!";
return 0;
}