Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
def
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
set
Function · 0.50
pop
Method · 0.45
add
Method · 0.45
extend
Method · 0.45
Tested by
no test coverage detected