Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/subbarayudu-j/TheAlgorithms-Python
/ dfs
Function
dfs
Graphs/scc_kosaraju.py:18–24 ·
view source on GitHub ↗
(u)
Source
from the content-addressed store, hash-verified
16
component = []
17
18
def
dfs(u):
19
global g, r, scc, component, visit, stack
20
if
visit[u]:
return
21
visit[u] = True
22
for
v in g[u]:
23
dfs(v)
24
stack.append(u)
25
26
def
dfs2(u):
27
global g, r, scc, component, visit, stack
Callers
1
kosaraju
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected