MCPcopy 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

16component = []
17
18def 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
26def dfs2(u):
27 global g, r, scc, component, visit, stack

Callers 1

kosarajuFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected