networking_flow
This commit is contained in:
@@ -21,7 +21,7 @@ def BFS(graph, s, t, parent):
|
|||||||
parent[ind] = u
|
parent[ind] = u
|
||||||
|
|
||||||
return True if visited[t] else False
|
return True if visited[t] else False
|
||||||
|
|
||||||
def FordFulkerson(graph, source, sink):
|
def FordFulkerson(graph, source, sink):
|
||||||
# This array is filled by BFS and to store path
|
# This array is filled by BFS and to store path
|
||||||
parent = [-1]*(len(graph))
|
parent = [-1]*(len(graph))
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ def BFS(graph, s, t, parent):
|
|||||||
parent[ind] = u
|
parent[ind] = u
|
||||||
|
|
||||||
return True if visited[t] else False
|
return True if visited[t] else False
|
||||||
|
|
||||||
def mincut(graph, source, sink):
|
def mincut(graph, source, sink):
|
||||||
# This array is filled by BFS and to store path
|
# This array is filled by BFS and to store path
|
||||||
parent = [-1]*(len(graph))
|
parent = [-1]*(len(graph))
|
||||||
|
|||||||
Reference in New Issue
Block a user