forked from iharsh234/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Prims_Algorithm.py
66 lines (57 loc) · 1.62 KB
/
Prims_Algorithm.py
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
# Prim's algorithm is a greedy algorithm that
# finds a minimum spanning tree
# for a weighted undirected graph.
#
# Time complexity: O(m * n)
# Input Format:
# First line has two integers, denoting the number of nodes in the graph and
# denoting the number of edges in the graph.
# The next lines each consist of three space separated integers,
# where and denote the two nodes between which the undirected edge
# exists, denotes the length of edge between the corresponding nodes.
# Output Format:
# Single integer denoting the weight of MST
def popmin(pqueue):
lowest = 1000
keylowest = None
for key in pqueue:
if pqueue[key] < lowest:
lowest = pqueue[key]
keylowest = key
del pqueue[keylowest]
return keylowest
def prim(graph, root):
pred = {} # pair {vertex: predecesor in MST}
key = {} # keep track of minimum weight for each vertex
pqueue = {} # priority queue implemented as dictionary
for v in graph:
pred[v] = -1
key[v] = 1000
key[root] = 0
for v in graph:
pqueue[v] = key[v]
while pqueue:
u = popmin(pqueue)
for v in graph[u]: # all neighbors of v
if v in pqueue and graph[u][v] < key[v]:
pred[v] = u
key[v] = graph[u][v]
pqueue[v] = graph[u][v]
return pred
graph = {
0 : {1:6, 2:8},
1 : {4:11},
2 : {3:9},
3 : {},
4 : {5:3},
5 : {2:7, 3:4}
}
pred = prim(graph, 0)
for v in pred: print "%s: %s" % (v, pred[v])
# Output format:
# 0: -1
# 1: 0
# 2: 0
# 3: 2
# 4: 1
# 5: 4