-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcycle_detection.cs
117 lines (92 loc) · 2.3 KB
/
cycle_detection.cs
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
__Detect Cycle in a Undirected Graph
__Complexity O(V+E)
_
_|_ o._ o._ __|_| _. _|_
_>| ||| ||| |(_|| |(_|_>| |
_|
*/
using System;
using System.Collections.Generic;
public class CycleDetection {
public int nodes, edges;
public List <int>[] graph;
public CycleDetection() {
}
public void initCycleDetection(int nodes, int edges) {
this.nodes = nodes;
this.edges = edges;
graph = new List<int>[nodes];
for (int i = 0; i < nodes; i++) {
graph[i] = new List<int>();
}
}
public bool isCyclic_util(int u, int parent, bool[] vis) {
vis[u] = true;
for (int i = 0; i < graph[u].Count; i++) {
int v = graph[u][i];
if (vis[v] == false) {
if (isCyclic_util(v, u, vis)) {
return true;
}
}
else if (v != parent) {
return true;
}
}
return false;
}
public bool isCyclic() {
bool[] visited = new bool[nodes];
for (int i = 0; i < nodes; i++) {
visited[i] = false;
}
for (int i = 0; i < nodes; i++) {
if (visited[i] == false) {
if (isCyclic_util(i, -1, visited)) {
return true;
}
}
}
return false;
}
public void manageCycleDetection(string[] lines) {
string[] line1 = lines[0].Split(' ');
int nodes = int.Parse(line1[0]);
int edges = int.Parse(line1[1]);
initCycleDetection(nodes, edges);
for (int i = 1; i <= edges; i++) {
string[] all_edge = lines[i].Split(' ');
int u = int.Parse(all_edge[0]);
int v = int.Parse(all_edge[1]);
graph[u].Add(v);
graph[v].Add(u);
}
if (isCyclic()) {
Console.WriteLine("Graph contains cycle");
}
else {
Console.WriteLine("Graph doesn't contain cycle");
}
}
}
/*
5 5
0 1
0 2
0 2
1 2
3 4
Graph contains cycle
5 5
1 0
0 2
2 0
0 3
3 4
Graph contains cycle
3 2
0 1
1 2
Graph doesn't contain cycle
*/