The crux of the algorithm comes in determining whether a node is the root of a stronglyconnectedcomponent.
算法的关键是判断一个结点是否是强连通分量的根。
2
The root node is simply the first node of the stronglyconnectedcomponent which is encountered during the depth-first traversal.
这个根结点是在深搜时碰到当前强连通分量的第一个结点。
3
When the search returns from a subtree, the nodes are taken from the stack and it is determined whether each node is the root of a stronglyconnectedcomponent.