Skip to content

Xavier-MaYiMing/Ford-Fulkerson-Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Ford-Fulkerson Algorithm

Reference: Ford, L. R.; Fulkerson, D. R. (1956). Maximal flow through a network. Canadian Journal of Mathematics. 8: 399–404.

The Ford-Fulkerson algorithm for the maximum flow problem

Variables Meaning
network The residual graph, network[i][j] is the residual flow from node i to node j (list)
source The source node
destination The destination node
nn The number of nodes
max_flow The maximum flow
pred_node pred_node[i] = j means node j is the predecessor node of node i in the augmenting path (list)

Example

if __name__ == '__main__':
    test_network = [
            [0, 5, 4, 3, 0, 0, 0, 0],
            [0, 0, 0, 0, 5, 3, 0, 0],
            [0, 0, 0, 0, 0, 3, 2, 0],
            [0, 0, 0, 0, 0, 0, 2, 0],
            [0, 5, 0, 0, 0, 0, 0, 4],
            [0, 0, 0, 0, 0, 0, 0, 3],
            [0, 0, 0, 0, 0, 0, 0, 5],
            [0, 0, 0, 0, 0, 0, 0, 0],
        ]
        s = 0
        d = 7
        print(main(test_network, s, d))
Output
11  # The maximum flow is 11

About

The Ford-Fulkerson algorithm for the maximum flow problem

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy