Function petgraph::algo::tarjan_scc [] [src]

pub fn tarjan_scc<G>(g: G) -> Vec<Vec<G::NodeId>> where G: IntoNodeIdentifiers + IntoNeighbors + NodeIndexable

[Generic] Compute the strongly connected components using Tarjan's algorithm.

Return a vector where each element is a strongly connected component (scc). The order of node ids within each scc is arbitrary, but the order of the sccs is their postorder (reverse topological sort).

For an undirected graph, the sccs are simply the connected components.

This implementation is recursive and does one pass over the nodes.