mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-03 12:26:44 +00:00
Fixes 12192
This commit is contained in:
parent
e321b1e444
commit
76db9e005b
@ -1,3 +1,11 @@
|
|||||||
|
"""Topological Sort on Directed Acyclic Graph(DAG)"""
|
||||||
|
|
||||||
|
# a
|
||||||
|
# / \
|
||||||
|
# b c
|
||||||
|
# / \
|
||||||
|
# d e
|
||||||
|
|
||||||
edges: dict[str, list[str]] = {
|
edges: dict[str, list[str]] = {
|
||||||
"a": ["c", "b"],
|
"a": ["c", "b"],
|
||||||
"b": ["d", "e"],
|
"b": ["d", "e"],
|
||||||
@ -5,18 +13,39 @@ edges: dict[str, list[str]] = {
|
|||||||
"d": [],
|
"d": [],
|
||||||
"e": [],
|
"e": [],
|
||||||
}
|
}
|
||||||
|
|
||||||
vertices: list[str] = ["a", "b", "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]:
|
def topological_sort(start: str, visited: list[str], sort: list[str]) -> list[str]:
|
||||||
visited.append(start)
|
|
||||||
current = start
|
current = start
|
||||||
for neighbor in edges[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:
|
if neighbor not in visited:
|
||||||
topological_sort(neighbor, visited, sort)
|
sort = topological_sort(neighbor, visited, sort)
|
||||||
|
|
||||||
|
# After visiting all neighbors, add the current node to the sorted list
|
||||||
sort.append(current)
|
sort.append(current)
|
||||||
|
|
||||||
|
# If there are some nodes that were not visited (disconnected components)
|
||||||
|
if len(visited) != len(vertices):
|
||||||
|
for vertex in vertices:
|
||||||
|
if vertex not in visited:
|
||||||
|
sort = topological_sort(vertex, visited, sort)
|
||||||
|
|
||||||
|
# Return sorted list
|
||||||
return sort
|
return sort
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
# Topological Sorting from node "a" (Returns the order in bottom up approach)
|
||||||
sort = topological_sort("a", [], [])
|
sort = topological_sort("a", [], [])
|
||||||
sort.reverse() #Top down approach
|
|
||||||
|
# Reversing the list to get the correct topological order (Top down approach)
|
||||||
|
sort.reverse()
|
||||||
print(sort)
|
print(sort)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user