codezonediitj / pydatastructs

A python package for data structures and algorithms
https://pydatastructs.readthedocs.io/en/stable/
Other
199 stars 269 forks source link

Network flow: fork Fulkerson algorithmn #477

Open dejokz opened 2 years ago

dejokz commented 2 years ago

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

czgdp1807 commented 2 years ago

Sure go ahead.