Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 311 Bytes

Ford-Fulkerson algorithm.md

File metadata and controls

15 lines (10 loc) · 311 Bytes

[[Graph and Networking Algoriithms]] Max-flow algorithm

  1. find an augmenting path
  2. compute the bottleneck capacity
  3. augment each edge and the total flow

**The graph must remain in equilibrium Usually is used depth-first alg to finish the iterations. ** ![[Frblp.jpg]]

#algorithms #networking #maxflow