MCPcopy Create free account
hub / github.com/ActiveState/code / DFS

Function DFS

recipes/Python/576946_Depth_first_search_generator/recipe-576946.py:1–10  ·  view source on GitHub ↗
(G, v)

Source from the content-addressed store, hash-verified

1def DFS (G, v):
2 yield v
3 visited = set ([v])
4 S = neighbors (v)
5 while S:
6 w = S.pop()
7 if w not in visited:
8 yield w
9 visited.add (w)
10 S.extend (neighbors (w))

Callers

nothing calls this directly

Calls 4

setFunction · 0.50
popMethod · 0.45
addMethod · 0.45
extendMethod · 0.45

Tested by

no test coverage detected