/strongly-connected-components

Implementation of the algorithm to find strongly connected components of a directed graph

Primary LanguageJava

strongly-connected-components

Implement the algorithm to find strongly connected components of a directed graph. Add the method to your DFS class from SP8. Make changes so that all methods share as much of the code as possible.

public static DFS stronglyConnectedComponents(Graph g) { ... }