algorithmtheorydirected-graphdirected-acyclic-graphs

How do I check if a directed graph is acyclic?


How do I check if a directed graph is acyclic? And how is the algorithm called? I would appreciate a reference.


Solution

  • I would try to sort the graph topologically, and if you can't, then it has cycles.