-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDetect_cycle_in_Directed-Graph_using-BFS--KHANS-ALGO.cpp
87 lines (71 loc) · 1.69 KB
/
Detect_cycle_in_Directed-Graph_using-BFS--KHANS-ALGO.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
#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);
}
// USING TOPOLOGICAL SORTING (BFS):
void detectCycleBFS(int source, vector<bool> &visited, vector<int> &indegree)
{
queue<int> q;
// Assigning the indegree of each vertex.
for (int i = 0; i < v; i++)
{
for (auto v : graph[i])
indegree[v]++;
}
for (int i = 0; i < v; i++)
{
if (indegree[i] == 0)
q.push(i);
}
while (!q.empty())
{
int current = q.front();
q.pop();
for (int v : graph[current])
{
indegree[v]--;
if (indegree[v] == 0)
q.push(v);
}
}
}
};
int main()
{
int v = 4;
Graph g(v);
vector<int> indegree(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> visited(v, false);
for (int source = 0; source < v; source++)
if (!visited[source])
g.detectCycleBFS(source, visited, indegree);
// After Topological Sorting, Checking if any of the vertex has in-degree more than 0 then there is a cycle or loop.
for (int i = 0; i < v; i++)
if (indegree[i] > 0)
flag = true;
if (flag)
cout << "Cycle is detected!";
else
cout << "Cycle is not found!";
return 0;
}