-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimplement_the_shortest_path_algorithm.py
More file actions
48 lines (41 loc) · 1.52 KB
/
Copy pathimplement_the_shortest_path_algorithm.py
File metadata and controls
48 lines (41 loc) · 1.52 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
INF = float('inf')
adj_matrix = [
[0, 5, 3, INF, 11, INF],
[5, 0, 1, INF, INF, 2],
[3, 1, 0, 1, 5, INF],
[INF, INF, 1, 0, 9, 3],
[11, INF, 5, 9, 0, INF],
[INF, 2, INF, 3, INF, 0],
]
def shortest_path(matrix, start_node, target_node=None):
n = len(matrix)
distances = [INF] * n
distances[start_node] = 0
paths = [[node_no] for node_no in range(n)]
visited = [False] * n
for _ in range(n):
min_distance = INF
current = -1
for node_no in range(n):
if not visited[node_no] and distances[node_no] < min_distance:
min_distance = distances[node_no]
current = node_no
if current == -1:
break
visited[current] = True
for node_no in range(n):
distance = matrix[current][node_no]
if distance != INF and not visited[node_no]:
new_distance = distances[current] + distance
if new_distance < distances[node_no]:
distances[node_no] = new_distance
paths[node_no] = paths[current] + [node_no]
targets = [target_node] if target_node is not None else range(n)
for node_no in targets:
if node_no == start_node or distances[node_no] == INF:
continue
string_path = (str(n) for n in paths[node_no])
path = ' -> '.join(string_path)
print(f'\n{start_node}-{node_no} distance: {distances[node_no]}\nPath: {path}')
return distances, paths
shortest_path(adj_matrix, 0, 5)