Find all cycles in the directed graph?

526 Views Asked by At

Tarjan's strongly connected components algorithm can only find fundamental cycles or all cycles that are in the graph ?

1

There are 1 best solutions below

1
On BEST ANSWER

It cannot find all the cycles as long as it runs in O(V + E) (Polynomial time). If it could, it could solve hamiltonian cycle problem in polynomial time but this problem is NP-hard.