strongly_connected_component_algorithm (250B)
1 # Strongly connected component algorithms 2 3 - [Kosaraju's_algorithm]: [algorithm] with two [depth_first_search] with [post_order] numbering 4 - [Tarjan's_algorithm] 5 6 Up: [graph_algorithm], [strongly_connected_component] 7 8 See also: [topological_sorting]