Strong Components

Definition:

Vertices v and w are srongly connected if there is a directed path from v to w and a directed path from w to v.

Algorithm:

Phase 1, Compute reverse postorder of the reverse graph of graph G, refer to my blog Topological Sort to know how to compute this.

Phase 2, Run DFS in the order of the results from Phase 1.

posted on 2016-05-01 11:58  dingjunnan  阅读(124)  评论(0编辑  收藏  举报

导航