vsaveris / graph-algorithms

Implementation of graph algorithms in Python.
MIT License
0 stars 2 forks source link

SCC Algorithm Implementation #2

Open vsaveris opened 4 years ago

vsaveris commented 4 years ago

Implementation of the SCC algorithm, which finds all the Strongly Connected Components of a graph G = (V, E).

Should be included in the GraphAlgorithms class.

vsaveris commented 4 years ago

See chapter 3 DPV