forked from iiitv/algos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dijkstra.java
92 lines (83 loc) · 3.15 KB
/
Dijkstra.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
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
/*
* Problem Statement: Implementation of Dijkstra Algorithm.
* Time Complexity: O(|V|^2)
* Space Complexity: O(|V|) for priority Queue.
* Matrix representation is used here. Linked List representation would reduce time complexity to O(Elog(V)),
* if implemented using binary heaps.
*/
import java.util.Comparator;
import java.util.HashSet;
import java.util.PriorityQueue;
import java.util.Set;
public class Dijkstra {
public int[][] graph;
public Node[] nodes;
public static class Node {
public Node parent;
public int cost;
public int id;
public Node(Node parent, int cost, int id) {
this.parent = parent;
this.cost = cost;
this.id = id;
}
}
public Dijkstra() {
graph = new int[][]{{0, 4, 0, 0, 0, 0, 0, 8, 0},
{4, 0, 8, 0, 0, 0, 0, 11, 0},
{0, 8, 0, 7, 0, 4, 0, 0, 2},
{0, 0, 7, 0, 9, 14, 0, 0, 0},
{0, 0, 0, 9, 0, 10, 0, 0, 0},
{0, 0, 4, 14, 10, 0, 2, 0, 0},
{0, 0, 0, 0, 0, 2, 0, 1, 6},
{8, 11, 0, 0, 0, 0, 1, 0, 7},
{0, 0, 2, 0, 0, 0, 6, 7, 0}
};
nodes = new Node[graph.length];
}
public static void main(String[] args) {
Dijkstra dijkstra = new Dijkstra();
for(int i = 0; i < dijkstra.nodes.length; i++)
dijkstra.nodes[i] = new Node(null, Integer.MAX_VALUE, i);
int source = 0;
int destination = 4;
dijkstra.shortestPath(source, destination);
System.out.println("Shortest Distance from " + source + " to " + destination + " is " + dijkstra.nodes[destination].cost);
Node temp = dijkstra.nodes[destination];
System.out.println("Path is ");
while(temp.parent != null) {
System.out.print(temp.id + " <--- ");
temp = temp.parent;
}
System.out.println(temp.id);
}
public void shortestPath(int source, int destination) {
Set<Node> visited = new HashSet<>();
PriorityQueue<Node> pQueue = new PriorityQueue<>(new Comparator<Node>() {
@Override
public int compare(Node o1, Node o2) {
return o1.cost - o2.cost;
}
});
nodes[source].cost = 0;
pQueue.add(nodes[source]);
while(!pQueue.isEmpty()) {
Node currVertex = pQueue.poll();
for(int i = 0; i < graph.length; i++) {
if(graph[currVertex.id][i]!=0 && !visited.contains(nodes[i]) ) {
if(!pQueue.contains(nodes[i])) {
nodes[i].cost = currVertex.cost + graph[currVertex.id][i];
nodes[i].parent = currVertex;
pQueue.add(nodes[i]);
}
else {
nodes[i].cost = Math.min(nodes[i].cost, currVertex.cost + graph[currVertex.id][i]);
if(nodes[i].cost == currVertex.cost + graph[currVertex.id][i])
nodes[i].parent = currVertex;
}
}
}
visited.add(currVertex);
}
}
}