Edmonds–Karp algorithm: Difference between revisions

Content deleted Content added
m link
correct description
Line 1:
In [[computer science]], in the field of [[graph theory]], the '''Edmonds-Karp algorithm''' is an implementation of the ''[[Ford-Fulkerson algorithm]]''. except The important additional feature is that the shortest augmenting path is used at each step, which guarantees that the computation ofwill terminate. In most implementations, the shortest augmenting path is afound using [[breadth-first search]].
 
The Edmonds-Karp algorithm [[Big O notation|runs]] in O(VE<sup>2</sup>) time, where V and E is the number of vertices and edges in a [[graph]], respectively.