This project provides a simple implementation and example of finding the maximum flow of a network.
This implements the Edmonds-Karp algorithm for Ford-Fulkerson using breadth-first search and an adjacency representation of the network.
Utility class: MaxFlowExample
JUnit 5 Test class: MaxFlowExampleTest
The first draft used side-effects in Java, where a method modifies
an object passed to it.
The residualGraph array was passed into the method as a mutable object
to be modified by the method.
It is a simple way to "return" multiple pieces of information,
in this case the int flow (return value) and the int[][] graph.
Most modern programming paradigms (especially Functional Programming) argue for immutability. When a method modifies an object passed into it:
-
Predictability decreases: A developer might not expect their residualGraph array to be changed by a method that looks like a simple calculation.
-
Debugging becomes harder: If the graph state is wrong, you have to hunt down which method modified it.
-
Thread Safety: If multiple threads access that array, side-effects can lead to race conditions.
There is a subtle but important distinction in how these two arrays function within the logic:
-
The
parentarray is "Transient": It is a temporary piece of scratchpad memory used only for a single iteration of a loop. It doesn't represent the "final result" of the algorithm; it's just a tool to get there. -
The
residualGraphis "Stateful": It represents the final state of the flow network. It is the data the user actually wants to inspect after the algorithm finishes.parent: Internal. Hidden inside the utility logic. The user of the class never sees it.residualGraph: External. User has to create this array just to call the method. User manages memory for the algorithm: Poor "encapsulation".
Network Flow Example provides learners with a framework for experimenting with network flow algorithms.
Copyright (c) 2026, Dr. Jody Paul
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.