IndexHelp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 step = 1 def DFS(v): global step label[v] = step step = step + 1 for w in Neighborhood(v): if not label[w]: pred[w] = v DFS(w) root = PickVertex() DFS(root)