Python/Graphs
Viraat Das 2fc2ae3f32 Created a generalized algo to edmonds karp (#724)
Edmonds Karp algorithm is traditionally with only one source and one sink. What do you do if you have multiple sources and sinks? This algorithm is a generalized algorithm that regardless of however many sinks and sources you have, will allow you to use this algorithm. It does this by using the traditional algorithm but adding an artificial source and sink that allows with "infinite" weight.
2019-04-25 19:48:14 +08:00
..
edmonds_karp_Multiple_SourceAndSink.py Created a generalized algo to edmonds karp (#724) 2019-04-25 19:48:14 +08:00