-
-
Notifications
You must be signed in to change notification settings - Fork 46.5k
/
Copy pathtopological_sort.py
54 lines (41 loc) · 1.44 KB
/
topological_sort.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
"""Topological Sort on Directed Acyclic Graph(DAG)"""
# a
# / \
# b c
# / \
# d e
edges: dict[str, list[str]] = {
"a": ["c", "b"],
"b": ["d", "e"],
"c": [],
"d": [],
"e": [],
}
vertices: list[str] = ["a", "b", "c", "d", "e"]
# Perform topological sort on a DAG starting from the specified node
def topological_sort(start: str, visited: list[str], sort: list[str]) -> list[str]:
current = start
# Mark the current node as visited
visited.append(current)
# List of all neighbors of current node
neighbors = edges[current]
# Traverse all neighbors of the current node
for neighbor in neighbors:
# Recursively visit each unvisited neighbor
if neighbor not in visited:
sort = topological_sort(neighbor, visited, sort)
# After visiting all neighbors, add the current node to the sorted list
sort.append(current)
# If there are some nodes that were not visited (disconnected components)
if len(visited) != len(vertices):
for vertice in vertices:
if vertice not in visited:
sort = topological_sort(vertice, visited, sort)
# Return sorted list
return sort
if __name__ == "__main__":
# Topological Sorting from node "a" (Returns the order in bottom up approach)
sort = topological_sort("a", [], [])
# Reversing the list to get the correct topological order (Top down approach)
sort.reverse()
print(sort)