Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 218 Bytes

File metadata and controls

7 lines (5 loc) · 218 Bytes

DepthFirstSearch

Implements a Depth-First-Search based algorithm to find strongly connected components in a Directed Graph.

Uses Adjacency lists to represent the graphs.

Written in Python 3.3