Content deleted Content added
→The Root Property: v'.dfs should read v'.index in the v.lowlink property |
|||
Line 8:
== The Root Property ==
The crux of the algorithm comes in determining whether a node is the root of a strongly connected component. To do this, each node is given a depth search index <tt>v.index</tt>, which numbers the nodes consecutively in the order in which they are discovered. In addition, each node is assigned a value <tt>v.lowlink</tt> that satisfies <tt>v.lowlink := min {v'.
== The Algorithm in [[pseudocode]] ==
|