forked from ShyrenMore/InterviewPrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_cycle_directed.cpp
45 lines (38 loc) · 1.08 KB
/
check_cycle_directed.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
#include <bits/stdc++.h>
using namespace std;
class Solution{
private:
bool dfsCheck(int node, vector<vector<int>> adj, vector<int> &visited, vector<int> &path_visited)
{
visited[node] = 1;
path_visited[node] = 1;
for(auto it: adj[node])
{
if(!visited[it])
{
if(dfsCheck(it, adj, visited, path_visited))
return true;
}
else if(path_visited[it])
{
// node visited and on same path
return true;
}
}
path_visited[node] = 0;
return false;
}
public:
bool isCyclic(int V, vector<vector<int>> graph)
{
vector<int> visited(V, 0);
vector<int> path_visited(V, 0);
for (int i = 0; i < V; i++){
if(!visited[i]) {
if(dfsCheck(i, graph, visited, path_visited))
return true;
}
}
return false;
}
};