-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp136.java
59 lines (45 loc) · 1.46 KB
/
p136.java
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
/*Given a Directed Graph with V vertices (Numbered from 0 to V-1) and E edges, check whether it contains any cycle or not.
Example 1:
Input:
V = 4 , adj = [[1] , [2], [3], [3]]
Output: 1
Explanation: 3 -> 3 is a cycle
Example 2:
Input:
V = 3 , adj = [[1] , [2], []]
Output: 0
Explanation: no cycle in the graph
Your task:
You dont need to read input or print anything. Your task is to complete the function isCyclic() which takes the integer V denoting the number of vertices and adjacency list as input parameters and returns a boolean value denoting if the given directed graph contains a cycle or not.
Expected Time Complexity: O(V + E)
Expected Auxiliary Space: O(V)
Constraints:
1 ≤ V, E ≤ 105*/
class Solution {
public boolean isCyclic(int V, ArrayList<ArrayList<Integer>> adj) {
boolean vis[]=new boolean[V];
boolean rec[]=new boolean[V];
for(int i=0;i<V;i++){
if(dfs(adj,vis,i,rec)){
return true;
}
}
return false;
}
public static boolean dfs(ArrayList<ArrayList<Integer>> adj,boolean vis[],int curr,boolean rec[]){
vis[curr]=true;
rec[curr]=true;
for(int ele:adj.get(curr)){
if(rec[ele]==true){
return true;
}
if(vis[ele]==false){
if(dfs(adj,vis,ele,rec)){
return true;
}
}
}
rec[curr]=false;
return false;
}
}