Kosaraju Algorithm
Kosaraju-Sharir’s algorithm (also known as Kosaraju’s algorithm) is a linear time algorithm to find the strongly connected components of a directed graph. O(n + m)
Implementation
c++
1 | vector<vector<int>> edges = {{0,1}, {1,0}, {1,2}, {2,3},{3,4},{4,5},{5,2}}; |