-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetect_cycle_in_directed_graph.cpp
57 lines (57 loc) · 1.44 KB
/
detect_cycle_in_directed_graph.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
#include <bits/stdc++.h>
using namespace std;
vector<list<int>> directedgraphcompiler(vector<pair<int,int>> det, int nodes)
{
vector<list<int>> graph(nodes+1);
for (int i = 0; i < det.size(); i++)
{
graph[det[i].first].push_back(det[i].second);
}
return graph;
}
bool recursor(vector<list<int>> graph, vector<bool>& visited, int source, vector<bool>& recstack)
{
visited[source] = true;
recstack[source] = true;
list<int> holder = graph[source];
for(auto itr = holder.begin(); itr != holder.end(); itr++)
{
if(!visited[*itr])
{
if(recursor(graph, visited, *itr, recstack))
{
return true;
}
}
else if(recstack[*itr])
{
return true;
}
}
recstack[source]=false;
return false;
}
bool cycleFinder(vector<list<int>> graph, int nodes)
{
vector<bool> visited(nodes+1, false);
vector<bool> recstack(nodes+1, false);
for (int i = 1; i <= nodes; i++)
{
if(!visited[i])
{
if(recursor(graph, visited, i, recstack)) return true;
}
}
return false;
}
int main()
{
vector<pair<int,int>> det;
det.push_back(make_pair(1,2));
det.push_back(make_pair(2,3));
det.push_back(make_pair(4,3));
det.push_back(make_pair(4,1));
int nodes = 4, source =1;
vector<list<int>> mo = directedgraphcompiler(det, nodes);
cout<<cycleFinder(mo, nodes);
}