FordFulkersonEdmondsKarp
The Ford-Fulkerson algorithm is a method for computing the maximum flow in a flow network. A flow network is a directed graph where each edge has a capacity, and there is a designated source node and a sink node. The goal is to find the maximum amount of "flow" that can be sent from the source to the sink without exceeding the capacity of any edge.
The algorithm works by repeatedly finding an augmenting path from the source to the sink in the
Once an augmenting path is found, the algorithm determines the bottleneck capacity of that path, which is
This process continues until no more augmenting paths can be found from the source to the sink