-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathFindIfPathExistsInGraph.java
63 lines (53 loc) · 1.92 KB
/
FindIfPathExistsInGraph.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
60
61
62
63
// https://leetcode.com/problems/find-if-path-exists-in-graph
// T: O(V + E)
// S: O(V + E)
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
public class FindIfPathExistsInGraph {
public boolean validPath(int n, int[][] edges, int start, int end) {
UnDirectedGraph graph = UnDirectedGraph.from(n, edges);
return graph.pathFrom(start, end);
}
private static final class UnDirectedGraph {
private final Map<Integer, Vertex> vertices = new HashMap<>();
public static UnDirectedGraph from(int vertices, int[][] edges) {
UnDirectedGraph graph = new UnDirectedGraph(vertices);
for (int[] edge : edges) {
graph.vertices.get(edge[0]).addEdge(edge[1]);
graph.vertices.get(edge[1]).addEdge(edge[0]);
}
return graph;
}
private UnDirectedGraph(int vertices) {
for (int i = 0 ; i < vertices ; i++) {
this.vertices.put(i, new Vertex(i));
}
}
public boolean pathFrom(int start, int end) {
return pathTo(vertices.get(start), end, new HashSet<>());
}
private boolean pathTo(Vertex from, int to, Set<Integer> visited) {
if (visited.contains(from.value)) return false;
if (from.value == to) return true;
visited.add(from.value);
for (int edge : from.edges) {
if (pathTo(vertices.get(edge), to, visited)) {
return true;
}
}
return false;
}
private static final class Vertex {
private final int value;
private final Set<Integer> edges = new HashSet<>();
Vertex(int value) {
this.value = value;
}
public void addEdge(int to) {
edges.add(to);
}
}
}
}