forked from iiitv/algos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prims.js
80 lines (67 loc) · 1.55 KB
/
prims.js
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
function minKey (key, visited) {
let min = Number.MAX_VALUE;
let minIdx = -1;
let length = key.length;
for (let i = 0; i < length; i++) {
if (!visited[i] && key[i] < min) {
min = key[i];
minIdx = i;
}
}
return minIdx;
}
function generate (graph) {
/*
* Get the parent nodes in the MST
* :param graph: array which represents the graph
* :return: returns array of parent nodes
*/
let length = graph.length;
// stores the parent of each vertex
let parent = [];
// key value of each vertex
let key = [];
// flag for included in the MST
let mstSet = [];
// initialize arguments
for (let i = 0; i < length; i++) {
mstSet[i] = false;
key[i] = Number.MAX_VALUE;
}
// starting from the first vertex
// the first vertex is the root, so it doesn't have any parent
key[0] = 0;
parent[0] = -1;
for (let i = 0; i < length - 1; i++) {
// minimum key from given vertices
let u = minKey(key, mstSet);
mstSet[u] = true;
// updating the neighbours key
for (let j = 0; j < length; j++) {
if (graph[u][j] !== 0 && !mstSet[j] && graph[u][j] < key[j]) {
parent[j] = u;
key[j] = graph[u][j];
}
}
}
return parent;
}
function main () {
// given graph
let graph = [
[0, 2, 0, 6, 0],
[2, 0, 3, 8, 5],
[0, 3, 0, 0, 7],
[6, 8, 0, 0, 9],
[0, 5, 7, 9, 0]
];
// get the parent nodes of all the vertices
let parent = generate(graph);
let length = graph.length;
// print the MST
console.log('Edge : Weight');
for (let i = 1; i < length; i++) {
console.log(parent[i] + ' - ' + i + ' : ' + graph[i][parent[i]]);
}
}
main();