-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDetect_cycle_in_Directed-Graph_using-DFS.cpp
70 lines (60 loc) · 1.46 KB
/
Detect_cycle_in_Directed-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
70
#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);
}
bool detectCycleDFS(int source, vector<bool> &stack, vector<bool> &visited)
{
stack[source] = true;
if (!visited[source])
{
visited[source] = true;
for (auto v : graph[source])
{
if (!visited[v] && detectCycleDFS(v, stack, visited))
return true;
// if the node is already present in the stack then there is a loop.
if (stack[v] == true)
return true;
}
}
// If not found any cycle form the source, remove it.
// BACKTRACKING...
stack[source] = false;
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;
vector<bool> stack(v, false);
vector<bool> visited(v, false);
for (int source = 0; source < v; source++)
if (!visited[source] && g.detectCycleDFS(source, stack, visited))
flag = true;
if (flag)
cout << "Cycle is detected!";
else
cout << "Cycle is not found!";
return 0;
}