MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / dfs2

Function dfs2

Graphs/scc_kosaraju.py:26–32  ·  view source on GitHub ↗
(u)

Source from the content-addressed store, hash-verified

24 stack.append(u)
25
26def dfs2(u):
27 global g, r, scc, component, visit, stack
28 if visit[u]: return
29 visit[u] = True
30 component.append(u)
31 for v in r[u]:
32 dfs2(v)
33
34def kosaraju():
35 global g, r, scc, component, visit, stack

Callers 1

kosarajuFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected