Content deleted Content added
No edit summary |
Eclecticos (talk | contribs) m →The algorithm in pseudocode: deleted extra space character |
||
Line 80:
When each node finishes recursing, if its lowlink is still set to its index, then it is the root node of a strongly connected component, formed by all of the nodes above it on the stack. The algorithm pops the stack up to and including the current node, and presents all of these nodes as a strongly connected component.
Note that <code>''v''.lowlink := min(''v''.lowlink, ''w''.index)
== Complexity ==
|