-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbellman_ford_dag.py
78 lines (70 loc) · 1.79 KB
/
bellman_ford_dag.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
67
68
69
70
71
72
73
74
75
76
77
78
from math import inf
from collections import OrderedDict
def toplogical_sort(v,stack,visited):
"""
Topological sort for given graph. Also called as Linearize
"""
visited[v] = True
for i in G[v]:
if not visited[i]:
toplogical_sort(i,stack,visited)
stack.append(v)
def shortest_path_dag(G, s):
"""
The bellman-ford algorithm for single-source shortest paths in
general graphs
"""
visited = {v:False for v in G}
stack = []
for v in G:
if not visited[v]:
toplogical_sort(s,stack,visited)
dist = {v:inf for v in G}
prev = {v:None for v in G}
dist[s] = 0
print(stack)
while stack:
u = stack.pop()
print("Current node:", u)
for v in G[u]:
if dist[u] + G[u][v] < dist[v]:
dist[v] = dist[u] + G[u][v]
prev[v] = u
return dist, prev
if __name__ == '__main__':
# G = {
# 'S': {'A': 10, 'G': 8},
# 'A': {'E':2},
# 'B': {'A': 1, 'C': 1},
# 'C': {'D': 3},
# 'D': {'E': -1},
# 'E': {'B': -2},
# 'F': {'E': -1, 'A': -4},
# 'G': {'F': 1}
# }
G = {
'A' : {'D':3},
'B' : {'E':2},
'C' : {'F':1},
'D' : {'G':1,'H':7},
'E' : {'G':7,'H':2},
'F' : {'G':2,'H':1},
'G' : {'I':2},
'H' : {'I':8},
'I' : {}
}
G = OrderedDict(G)
src = 'A'
tgt = 'I'
dist, prev = shortest_path_dag(G,src)
print("Distance:", dist)
print("Previous:", prev)
print("Shortest Path length:", dist[tgt])
short_path = []
while True:
short_path.append(tgt)
tgt = prev[tgt]
if tgt is None:
break
print("Shortest Path:", end=' ')
print(*short_path[::-1], sep=' -> ')