-
Notifications
You must be signed in to change notification settings - Fork 0
/
cycledetction.cpp
73 lines (64 loc) · 1.26 KB
/
cycledetction.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
// DETECT CYCLE DFS
bool detectCycleDfs(int node,int parent,vector<int>&vis,vector<int> adj[])
{
vis[node]=1;
for(auto it:adj[node])
{
if(!vis[it])
{
if(detectCycleDfs(it,node,vis,adj)==true)
{
return true;
}
}
else if(it!=parent){
return true;
}
}
return false;
}
// DETECT CYCLE BFS
bool cycleDetectBfs(int node,vector<int>&vis,vector<int>adj[])
{
vis[node]=1;
queue<pair<int,int>> q;
q.push({node,0});
while(!q.empty())
{
int node=q.front().first;
int parent=q.front().second;
q.pop();
for(auto it:adj[node])
{
if(!vis[it])
{
q.push({it,node});
vis[it]=1;
}
else if(it!=parent)
{
return true;
}
}
}
return false;
}
// DETECT CYCLE DIRECTED GRAPH DFS
bool detectCycleDGdfs(int node, vector<int>&vis,vector<int>&pathvis,vector<int>adj[])
{
vis[node]=1;
pathvis[node]=1;
for(auto it:adj[node])
{
if(!vis[it])
{
if(detectCycleDGdfs(it,vis,pathvis,adj)==true)
{
return true;
}
}
else if(pathvis[it]==1)return true;
}
pathvis[node]=0;
return false;
}