-
Notifications
You must be signed in to change notification settings - Fork 413
Expand file tree
/
Copy pathDijkstra.java
More file actions
81 lines (68 loc) · 2.09 KB
/
Dijkstra.java
File metadata and controls
81 lines (68 loc) · 2.09 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
//Implementation of dijkstra's algorithm in Java using priority queue
import java.util.*;
class Dijkstra {
static class Edge {
int vertex, weight;
Edge(int v, int w) {
vertex = v;
weight = w;
}
}
static class Graph {
int V;
LinkedList<Edge>[] adj;
Graph(int V) {
this.V = V;
adj = new LinkedList[V];
for (int i = 0; i < V; i++) {
adj[i] = new LinkedList<>();
}
}
void addEdge(int u, int v, int weight) {
adj[u].add(new Edge(v, weight));
adj[v].add(new Edge(u, weight));
}
void shortestPath(int src) {
PriorityQueue<Edge> pq = new PriorityQueue<>(V, Comparator.comparingInt(edge -> edge.weight));
int[] dist = new int[V];
Arrays.fill(dist, Integer.MAX_VALUE);
pq.add(new Edge(src, 0));
dist[src] = 0;
while (!pq.isEmpty()) {
Edge edge = pq.poll();
int u = edge.vertex;
for (Edge e : adj[u]) {
int v = e.vertex;
int weight = e.weight;
if (dist[v] > dist[u] + weight) {
dist[v] = dist[u] + weight;
pq.add(new Edge(v, dist[v]));
}
}
}
System.out.println("Vertex Distance from Source");
for (int i = 0; i < V; i++) {
System.out.println(i + " \t\t " + dist[i]);
}
}
}
public static void main(String[] args) {
int V = 9;
Graph g = new Graph(V);
g.addEdge(0, 1, 4);
g.addEdge(0, 7, 8);
g.addEdge(1, 2, 8);
g.addEdge(1, 7, 11);
g.addEdge(2, 3, 7);
g.addEdge(2, 8, 2);
g.addEdge(2, 5, 4);
g.addEdge(3, 4, 9);
g.addEdge(3, 5, 14);
g.addEdge(4, 5, 10);
g.addEdge(5, 6, 2);
g.addEdge(6, 7, 1);
g.addEdge(6, 8, 6);
g.addEdge(7, 8, 7);
g.shortestPath(0);
}
}