Complexity Analysis of Floyd Warshall Algorithm

  • Time Complexity: O(V3), where V is the number of vertices in the graph and we run three nested loops each of size V
  • Auxiliary Space: O(V2), to create a 2-D matrix in order to store the shortest distance for each pair of nodes.




Floyd-Warshall Algorithm in Python

The Floyd-Warshall algorithm, named after its creators Robert Floyd and Stephen Warshall, is fundamental in computer science and graph theory. It is used to find the shortest paths between all pairs of nodes in a weighted graph. This algorithm is highly efficient and can handle graphs with both positive and negative edge weights, making it a versatile tool for solving a wide range of network and connectivity problems.

The Floyd Warshall Algorithm is an all-pair shortest path algorithm, unlike Dijkstra and Bellman-Ford which are single source shortest path algorithms. This algorithm works for both the directed and undirected weighted graphs. However, it does not work for the graphs with negative cycles (where the sum of the edges in a cycle is negative). It follows the Dynamic Programming approach to check every possible path going via every possible node to calculate the shortest distance between every pair of nodes.

Similar Reads

Floyd-Warshall Algorithm in Python:

Initialize the solution matrix the same as the input graph matrix as a first step. Then update the solution matrix by considering all vertices as an intermediate vertex. The idea is to pick all vertices one by one and update all shortest paths which include the picked vertex as an intermediate vertex in the shortest path. When we pick vertex number k as an intermediate vertex, we already have considered vertices {0, 1, 2, .. k-1} as intermediate vertices. For every pair (i, j) of the source and destination vertices respectively, there are two possible cases. k is not an intermediate vertex in the shortest path from i to j. We keep the value of dist[i][j] as it is. k is an intermediate vertex in the shortest path from i to j. We update the value of dist[i][j] as dist[i][k] + dist[k][j], if dist[i][j] > dist[i][k] + dist[k][j]...

Complexity Analysis of Floyd Warshall Algorithm:

Time Complexity: O(V3), where V is the number of vertices in the graph and we run three nested loops each of size VAuxiliary Space: O(V2), to create a 2-D matrix in order to store the shortest distance for each pair of nodes....