Skip to content

Commit

Permalink
Create scc_kosaraju.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bT-53 authored Oct 27, 2017
1 parent dc5c576 commit 3cae796
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions Graphs/scc_kosaraju.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# n - no of nodes, m - no of edges
n, m = list(map(int,input().split()))

g = [[] for i in range(n)] #graph
r = [[] for i in range(n)] #reversed graph
# input graph data (edges)
for i in range(m):
u, v = list(map(int,input().split()))
g[u].append(v)
r[v].append(u)

stack = []
visit = [False]*n
scc = []
component = []

def dfs(u):
global g, r, scc, component, visit, stack
if visit[u]: return
visit[u] = True
for v in g[u]:
dfs(v)
stack.append(u)

def dfs2(u):
global g, r, scc, component, visit, stack
if visit[u]: return
visit[u] = True
component.append(u)
for v in r[u]:
dfs2(v)

def kosaraju():
global g, r, scc, component, visit, stack
for i in range(n):
dfs(i)
visit = [False]*n
for i in stack[::-1]:
if visit[i]: continue
component = []
dfs2(i)
scc.append(component)
return scc

print(kosaraju())

0 comments on commit 3cae796

Please sign in to comment.