-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGraph.java
More file actions
269 lines (231 loc) · 6.92 KB
/
Graph.java
File metadata and controls
269 lines (231 loc) · 6.92 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
package GraphAPI;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Stack;
public class Graph {
int v, e, connex;
List<Integer>[] adj;
boolean[] marked, color;
int[] parent, id;
boolean bipart = true, isCycle = false;
Stack<Integer> reverseOrder;
public Graph(int n) {
this.v = n;
adj = new List[n];
for (int i = 0; i < n; i++) {
adj[i] = new LinkedList<>();
}
}
/* constructor from a file */
public Graph(File file) {
BufferedReader reader;
try {
reader = new BufferedReader(new FileReader(file));
String line;
v = Integer.parseInt(reader.readLine()); //number of elements (1st line)
e = Integer.parseInt(reader.readLine()); //number of edges (2nd line)
adj = new List[v];
for (int i = 0; i < v; i++) {
adj[i] = new LinkedList<>();
}
while ((line = reader.readLine()) != null) {
String[] parts = line.split("\\s");
int from = Integer.parseInt(parts[0]);
int to = Integer.parseInt(parts[1]);
adj[from].add(to);
}
reader.close();
} catch (IOException ex) {
}
}
/* add edge for directed graph */
public void addEdge(int v, int w)
{
adj[v].add(w);
}
public void init() {
parent = new int[v];
id = new int[v];
marked = new boolean[v];
color = new boolean[v];
connex = 0;
reverseOrder = new Stack<>();
}
/* Depth-First Search */
public void dfs(int s) {
id[s] = connex;
marked[s] = true;
adj[s].stream().forEach((x) -> {
if (!marked[x]) {
color[x] = !color[s];
parent[x] = s;
dfs(x);
} else if (color[x] = color[s]) {
bipart = false;
} else {
//not working need dfs(s, origin)
isCycle = true;
}
});
if(!adj[s].isEmpty())
reverseOrder.push(s);
}
/* start a Depth-First Search */
public void exProfondeur(int s) {
init();
dfs(s);
}
/* ckeck if a path exist between a and b */
public boolean pathExist(int a, int b) {
exProfondeur(a);
return marked[b];
}
/* get a path between a and b */
public Stack<Integer> getPath(int a, int b)
{
if (!pathExist(a, b)) return null;
Stack<Integer> path = new Stack<>();
while (a != b) {
path.push(b);
b = parent[b];
}
path.push(a);
return path;
}
/* check if all element of the graph are connected */
public boolean isConnexe() {
exProfondeur(adj[0].get(0));
for (boolean isMarked : marked) {
if (!isMarked) {
return false;
}
}
return true;
}
/* count numbre of connexe */
public void countConnexe() {
for (int i = 0; i < v; i++) {
if (!marked[i]) {
dfs(i);
connex++;
}
}
}
/* check if two components are connected */
public boolean areConnected(int C1, int C2) {
return id[C1] == id[C2];
}
/* get connexe by id */
public List<Integer> getConnexe(int v) {
List<Integer> list = new LinkedList<>();
for (int i = 0; i < v; i++) {
if (id[i] == v) {
list.add(i);
}
}
return list;
}
/* get all connected componenets */
public Map<Integer, List<Integer>> getAllConnexe(int v) {
Map<Integer, List<Integer>> map = new HashMap<>();
for (int i = 0; i < id.length; i++) {
List<Integer> l = map.get(id[i]);
if (l == null) {
l = new LinkedList<>();
}
l.add(i);
map.put(id[i], l);
}
return map;
}
/* check if this graph has a cycle */
public boolean hasCycle() {
init();
for (int i : id) {
dfs(i);
}
return isCycle;
}
/* still figuring it out */
boolean bipart() {
init();
dfs(0);
return bipart;
}
/* breadth first search */
public void bfs(int s) {
LinkedList<Integer> q = new LinkedList<>();
q.addLast(s);
marked[s] = true;
while (!q.isEmpty()) {
s = q.getFirst();
for (int w : adj[s]) {
if (!marked[w]) {
q.addLast(w);
parent[w] = s;
marked[w] = true;
}
}
}
}
public Stack<Integer> topologicalOrder(){
init();
for (int i = 0; i < v; i++) {
if(!marked[i]) dfs(i);
}
return reverseOrder;
}
/* print the graph (obviously) */
public void print(){
for (int i = 0; i < v; i++) {
System.out.print(i + " -> ");
adj[i].stream().forEach(x->{System.out.print( x + " ");});
System.out.println("");
}
}
/* testing */
public static void main(String[] args) {
File file = new File("src/GraphAPI/data.txt");
Graph g = new Graph(file);
System.out.println("------- Graph -------");
g.print();
System.out.println("------- hasCycle -------");
if(g.hasCycle())
System.out.println("yes");
else System.out.println("no");
System.out.println("------- pathExist(0, 4) -------");
if(g.pathExist(0, 4))
System.out.println("yes");
else System.out.println("no");
System.out.println("------- pathExist(3, 0) -------");
if(g.pathExist(3, 0))
System.out.println("yes");
else System.out.println("no");
System.out.println("------- path(3, 0) -------");
Stack<Integer> path1 = g.getPath(3,0);
while (!path1.isEmpty()) {
System.out.print(path1.pop() + " -> ");
}
System.out.println("");
System.out.println("------- isConnexe -------");
if(g.isConnexe())
System.out.println("yes");
else System.out.println("no");
System.out.println("------- countConnex -------");
g.countConnexe();
System.out.println(g.connex);
System.out.println("------- topologicalOrder -------");
Stack<Integer> path = g.topologicalOrder();
while (!path.isEmpty()) {
System.out.print(path.pop() + " -> ");
}
System.out.println("");
}
}