Edmonds–Karp algorithm
   HOME

TheInfoList



OR:

In
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to Applied science, practical discipli ...
, the Edmonds–Karp algorithm is an implementation of the Ford–Fulkerson method for computing the
maximum flow In optimization theory, maximum flow problems involve finding a feasible flow through a flow network that obtains the maximum possible flow rate. The maximum flow problem can be seen as a special case of more complex network flow problems, such ...
in a
flow network In graph theory, a flow network (also known as a transportation network) is a directed graph where each edge has a capacity and each edge receives a flow. The amount of flow on an edge cannot exceed the capacity of the edge. Often in operations re ...
in O(, V, , E, ^2) time. The algorithm was first published by Yefim Dinitz (whose name is also transliterated "E. A. Dinic", notably as author of his early papers) in 1970 and independently published by
Jack Edmonds Jack R. Edmonds (born April 5, 1934) is an American-born and educated computer scientist and mathematician who lived and worked in Canada for much of his life. He has made fundamental contributions to the fields of combinatorial optimization, po ...
and
Richard Karp Richard Manning Karp (born January 3, 1935) is an American computer scientist and computational theorist at the University of California, Berkeley. He is most notable for his research in the theory of algorithms, for which he received a Turing ...
in 1972.
Dinic's algorithm Dinic's algorithm or Dinitz's algorithm is a strongly polynomial algorithm for computing the maximum flow in a flow network, conceived in 1970 by Israeli (formerly Soviet) computer scientist Yefim (Chaim) A. Dinitz. The algorithm runs in O(V^2 E) ti ...
includes additional techniques that reduce the running time to O(, V, ^2, E, ).


Algorithm

The algorithm is identical to the Ford–Fulkerson algorithm, except that the search order when finding the
augmenting path In graph theory, a flow network (also known as a transportation network) is a directed graph where each edge has a capacity and each edge receives a flow. The amount of flow on an edge cannot exceed the capacity of the edge. Often in operations res ...
is defined. The path found must be a shortest path that has available capacity. This can be found by a
breadth-first search Breadth-first search (BFS) is an algorithm for searching a tree data structure for a node that satisfies a given property. It starts at the tree root and explores all nodes at the present depth prior to moving on to the nodes at the next de ...
, where we apply a weight of 1 to each edge. The running time of O(, V, , E, ^2) is found by showing that each augmenting path can be found in O(, E, ) time, that every time at least one of the E edges becomes saturated (an edge which has the maximum possible flow), that the distance from the saturated edge to the source along the augmenting path must be longer than last time it was saturated, and that the length is at most , V, . Another property of this algorithm is that the length of the shortest augmenting path increases monotonically. There is an accessible proof in ''
Introduction to Algorithms ''Introduction to Algorithms'' is a book on computer programming by Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein. The book has been widely used as the textbook for algorithms courses at many universities and is ...
''.


Pseudocode

algorithm EdmondsKarp is input: graph ''(graph should be the list of edges coming out of vertex v in the'' '' original graph and their corresponding constructed reverse edges'' '' which are used for push-back flow.'' '' Each edge should have a capacity, flow, source and sink as parameters,'' '' as well as a pointer to the reverse edge.)'' s ''(Source vertex)'' t ''(Sink vertex)'' output: flow ''(Value of maximum flow)'' flow := 0 ''(Initialize flow to zero)'' repeat ''(Run a breadth-first search (bfs) to find the shortest s-t path.'' '' We use 'pred' to store the edge taken to get to each vertex,'' '' so we can recover the path afterwards)'' q := queue() q.push(s) pred := array(graph.length) while not empty(q) cur := q.pop() for Edge e in graph urdo if pred .t= null and e.t ≠ s and e.cap > e.flow then pred .t:= e q.push(e.t) if not (pred = null) then ''(We found an augmenting path.'' '' See how much flow we can send)'' df := ∞ for (e := pred e ≠ null; e := pred .s do df := min(df, e.cap - e.flow) ''(And update edges by that amount)'' for (e := pred e ≠ null; e := pred .s do e.flow := e.flow + df e.rev.flow := e.rev.flow - df flow := flow + df until pred = null ''(i.e., until no augmenting path was found)'' return flow


Example

Given a network of seven nodes, source A, sink G, and capacities as shown below: In the pairs f/c written on the edges, f is the current flow, and c is the capacity. The residual capacity from u to v is c_f(u,v)=c(u,v)-f(u,v), the total capacity, minus the flow that is already used. If the net flow from u to v is negative, it ''contributes'' to the residual capacity. Notice how the length of the
augmenting path In graph theory, a flow network (also known as a transportation network) is a directed graph where each edge has a capacity and each edge receives a flow. The amount of flow on an edge cannot exceed the capacity of the edge. Often in operations res ...
found by the algorithm (in red) never decreases. The paths found are the shortest possible. The flow found is equal to the capacity across the minimum cut in the graph separating the source and the sink. There is only one minimal cut in this graph, partitioning the nodes into the sets \ and \, with the capacity :c(A,D)+c(C,D)+c(E,G)=3+1+1=5.\


Notes


References

# Algorithms and Complexity (see pages 63–69). https://web.archive.org/web/20061005083406/http://www.cis.upenn.edu/~wilf/AlgComp3.html {{DEFAULTSORT:Edmonds-Karp Algorithm Network flow problem Graph algorithms