pydatastructs icon indicating copy to clipboard operation
pydatastructs copied to clipboard

Network flow: fork Fulkerson algorithmn

Open dejokz opened this issue 4 years ago • 5 comments

Description of the problem

Given a graph that represents a flow network where every edge has a capacity. Also given two vertices source ‘s’ and sink ‘t’ in the graph, find the maximum possible flow from s to t with the following constraints: a) Flow on an edge doesn’t exceed the given capacity of the edge. b) Incoming flow is equal to outgoing flow for every vertex except s and t.

References/Other comments

Video Article

dejokz avatar Jan 07 '22 19:01 dejokz

Sure go ahead.

czgdp1807 avatar Jan 08 '22 14:01 czgdp1807