Ford-Fulkerson algorithm
2. Proposals of adaptation
1. Work with a network on a sheet of a spreadsheet editor:
The network is again converted to a table and organized
in a similar way as in the case of the first method
of Dijsktra's algorithm adaption.
We add labels of the nodes to the first column.
All the other cells on the row for a node are reserved
for the edges coming out from
and are written as
–
where
is the
end node of the edge,
indicates the current flow through the edge and
identifies
its capacity. Let us take the same network
illustrated on the Image 1.
The following Table 1 demonstrates the situation after processing the first augmenting
path
Example 3: network 
A blind student finds an augmenting path from the source to the sink
.
He/she consecutively goes through the table and holds a sequence of the path's
nodes and actual available capacity of the path's edges in his/her memory.
During the second view he/she modifies
the flow and marks edges with the flow equal
to the capacity, which are directed from the source to the sink.
2. Edges are organized one below each other on lines of a standard text editor:
every edge is written separately on one line
as –
–
,
where
is a starting node and
is an ending
node of the edge with a capacity
and a current flow
.
The edges are ordered alphabetically according to the node
from which they come. We work in a similar way as when using
the previous method. We go through the table twice,
first to find an augmenting path from the source to the sink,
then to increase a flow on the path.