forked from Suryakant-Bharti/Important-Java-Concepts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPrimMST.kt
75 lines (62 loc) Β· 1.84 KB
/
PrimMST.kt
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
package algo.graphs.undirected.weighted
import algo.datastructures.IndexedPriorityQueue
import algo.datastructures.Queue
class PrimMST(G: UWGraph): MST {
var weight: Double = 0.0
var edges: Queue<UWGraph.Edge> = Queue()
/**
* distTo[v] = distance of shortest s->v path
*/
private val distTo: DoubleArray = DoubleArray(G.V) { Double.POSITIVE_INFINITY }
/**
* edgeTo[v] = last edge on shortest s->v path
*/
private val edgeTo: Array<UWGraph.Edge?> = arrayOfNulls(G.V)
/**
* priority queue of vertices
*/
private val pq: IndexedPriorityQueue<Double> = IndexedPriorityQueue(G.V)
private val visited = Array(G.V) { false }
init {
for (s in G.vertices()) {
if (!visited[s]) {
distTo[s] = 0.0
pq.insert(s, 0.0)
while (!pq.isEmpty()) {
val v = pq.poll().first
visited[v] = true
for (e in G.adjacentEdges(v)) {
scan(e, v)
}
}
}
}
for (v in edgeTo.indices) {
val e = edgeTo[v]
if (e != null) {
edges.add(e)
weight += e.weight
}
}
}
private fun scan(e: UWGraph.Edge, v: Int) {
val w = e.other(v)
if (!visited[w]) { // v-w is obsolete edge
if (e.weight < distTo[w]) {
distTo[w] = e.weight
edgeTo[w] = e
if (pq.contains(w)) {
pq.decreaseKey(w, distTo[w])
} else {
pq.insert(w, distTo[w])
}
}
}
}
override fun edges(): Iterable<UWGraph.Edge> {
return edges
}
override fun weight(): Double {
return weight
}
}