Consider I have the following graph:
A -> B
B -> C
C -> D
C -> A
What is the easiest way to find that A -> B -> C -> A is a circular relation? Is there such a function already built into NetworkX or another easy to use Python library?
|
Consider I have the following graph:
What is the easiest way to find that A -> B -> C -> A is a circular relation? Is there such a function already built into NetworkX or another easy to use Python library? |
||||
|
|
|
|
|||
|
|
|
Use Depth-First Search to detect cycles in a graph. |
|||
|