Floyd–Warshall algorithm
In computer science, the Floyd–Warshall algorithm is an algorithm for finding shortest paths in a weighted graph with positive or negative edge weights. A single execution of the algorithm will find the lengths of shortest paths between all pairs of vertices. Although it does not return details of the paths themselves, it is possible to reconstruct the paths with simple modifications to the algorithm. Versions of the algorithm can also be used for finding the transitive closure of a relation, or widest paths between all pairs of vertices in a weighted graph.
History and naming
The Floyd–Warshall algorithm is an example of dynamic programming, and was published in its currently recognized form by Robert Floyd in 1962. However, it is essentially the same as algorithms previously published by Bernard Roy in 1959 and also by Stephen Warshall in 1962 for finding the transitive closure of a graph, and is closely related to Kleene's algorithm for converting a deterministic finite automaton into a regular expression. The modern formulation of the algorithm as three nested for-loops was first described by Peter Ingerman, also in 1962.Algorithm
The Floyd–Warshall algorithm compares all possible paths through the graph between each pair of vertices. It is able to do this with comparisons in a graph, even though there may be up to edges in the graph, and every combination of edges is tested. It does so by incrementally improving an estimate on the shortest path between two vertices, until the estimate is optimal.Consider a graph with vertices numbered 1 through . Further consider a function that returns the shortest possible path from to using vertices only from the set as intermediate points along the way. Now, given this function, our goal is to find the shortest path from each to each using any vertex in.
For each of these pairs of vertices, the could be either
or
We know that the best path from to that only uses vertices through is defined by, and it is clear that if there was a better path from to to, then the length of this path would be the concatenation of the shortest path from to and the shortest path from to .
If is the weight of the edge between vertices and, we can define in terms of the following recursive formula: the base case is
and the recursive case is
This formula is the heart of the Floyd–Warshall algorithm. The algorithm works by first computing for all pairs for, then, and so on. This process continues until, and we have found the shortest path for all pairs using any intermediate vertices. Pseudocode for this basic version follows:
let dist be a |V| × |V| array of minimum distances initialized to ∞
for each edge do
dist ← w // The weight of the edge
for each vertex v do
dist ← 0
for k from 1 to |V|
for i from 1 to |V|
for j'' from 1 to |V|
if dist > dist + dist
dist ← dist + dist
end if
Example
The algorithm [|above] is executed on the graph on the left below:Prior to the first recursion of the outer loop, labeled above, the only known paths correspond to the single edges in the graph. At, paths that go through the vertex 1 are found: in particular, the path is found, replacing the path which has fewer edges but is longer. At, paths going through the vertices are found. The red and blue boxes show how the path is assembled from the two known paths and encountered in previous iterations, with 2 in the intersection. The path is not considered, because is the shortest path encountered so far from 2 to 3. At, paths going through the vertices are found. Finally, at, all shortest paths are found.
The distance matrix at each iteration of, with the updated distances in bold, will be:
Behavior with negative cycles
A negative cycle is a cycle whose edges sum to a negative value. There is no shortest path between any pair of vertices, which form part of a negative cycle, because path-lengths from to can be arbitrarily small. For numerically meaningful output, the Floyd–Warshall algorithm assumes that there are no negative cycles. Nevertheless, if there are negative cycles, the Floyd–Warshall algorithm can be used to detect them. The intuition is as follows:- The Floyd–Warshall algorithm iteratively revises path lengths between all pairs of vertices, including where ;
- Initially, the length of the path is zero;
- A path can only improve upon this if it has length less than zero, i.e. denotes a negative cycle;
- Thus, after the algorithm, will be negative if there exists a negative-length path from back to.
Path reconstruction
The Floyd–Warshall algorithm typically only provides the lengths of the paths between all pairs of vertices. With simple modifications, it is possible to create a method to reconstruct the actual path between any two endpoint vertices. While one may be inclined to store the actual path from each vertex to each other vertex, this is not necessary, and in fact, is very costly in terms of memory. Instead, the shortest-path tree can be calculated for each node in time using memory to store each tree which allows us to efficiently reconstruct a path from any two connected vertices.Pseudocode https://books.goalkicker.com/AlgorithmsBook/
let dist be a array of minimum distances initialized tolet next be a array of vertex indices initialized to null
procedure FloydWarshallWithPathReconstruction is
for each edge do
dist ← w // The weight of the edge
next ← v
for each vertex v do
dist ← 0
next ← v
for k from 1 to |V| do // standard Floyd-Warshall implementation
for i from 1 to |V|
for j from 1 to |V|
if dist > dist + dist then
dist ← dist + dist
next ← next
procedure Path
if next = null then
return
path =
while u ≠ v
u ← next
path.append
return path
Analysis
Let be, the number of vertices. To find all offrom those of
requires operations. Since we begin with
and compute the sequence of matrices,,,, the total number of operations used is
. Therefore, the complexity of the algorithm is big theta|.
Applications and generalizations
The Floyd–Warshall algorithm can be used to solve the following problems, among others:- Shortest paths in directed graphs.
- Transitive closure of directed graphs. In Warshall's original formulation of the algorithm, the graph is unweighted and represented by a Boolean adjacency matrix. Then the addition operation is replaced by logical conjunction and the minimum operation by logical disjunction.
- Finding a regular expression denoting the regular language accepted by a finite automaton
- Inversion of real matrices
- Optimal routing. In this application one is interested in finding the path with the maximum flow between two vertices. This means that, rather than taking minima as in the pseudocode above, one instead takes maxima. The edge weights represent fixed constraints on flow. Path weights represent bottlenecks; so the addition operation above is replaced by the minimum operation.
- Fast computation of Pathfinder networks.
- Widest paths/Maximum bandwidth paths
- Computing canonical form of difference bound matrices
- Computing the similarity between graphs
Implementations
- For C++, in the library
- For C#, at
- For C#, at
- For Java, in the library
- For JavaScript, in the Cytoscape library
- For MATLAB, in the package
- For Perl, in the module
- For Python, in the SciPy library or NetworkX library
- For R, in packages and
Comparison with other shortest path algorithms
There are also known algorithms using fast matrix multiplication to speed up all-pairs shortest path computation in dense graphs, but these typically make extra assumptions on the edge weights. In addition, because of the high constant factors in their running time, they would only provide a speedup over the Floyd–Warshall algorithm for very large graphs.