Download the BYJU'S Exam Prep App for free GATE/ESE preparation videos & tests - Download the BYJU'S Exam Prep App for free GATE/ESE preparation videos & tests -

Floyd Warshall Algorithm

The Floyd–Warshall algorithm is an algorithm that computes the shortest paths in a graph with positive or negative edge weights but with no negative cycles. A single execution of the algorithm will find the lengths, i.e. summed weights of the shortest paths between all pairs of vertices, though it does not return details of the paths themselves.

Table of Contents

What is the Floyd Warshall Algorithm?

The Floyd Warshall algorithm is a graph analysis algorithm that can be used to find the shortest paths between all pairs of nodes in a graph. It is named after Robert Floyd, who published the algorithm in 1962.

The algorithm works by iteratively updating a matrix of shortest path weights until the matrix converges to a final state. The matrix is initialised such that the shortest path between any two nodes is infinity or some large value. Then, the algorithm relaxes all edges in the graph, one at a time. For each edge, the algorithm updates the shortest path weight for the start and end nodes of the edge if the new path weight is lower than the current shortest path weight. After all the edges have been relaxed, the shortest paths between all pairs of nodes will have been found.

The Floyd Warshall algorithm can be used to solve many different types of problems, including finding the shortest path between two nodes in a graph, finding the length of the shortest cycle in a graph, and detecting whether or not there are negative-weight cycles in a graph.

Applications of Floyd Warshall Algorithm

There are many applications of the Floyd Warshall algorithm. Some of the most popular applications are finding the shortest path between two vertices in a graph, detecting negative cycles in a graph, and computing the transitive closure of a graph.

The Floyd Warshall algorithm can also be used for other purposes such as solving the all-pairs shortest path problem in weighted graphs, finding the closest pairs of vertices in a graph, and computing the diameter of a graph.

Advantages of Floyd Warshall Algorithm

The Floyd Warshall algorithm is an incredibly powerful tool that can be used to solve a variety of problems. In this article, we’ll take a look at some of the advantages of using the Floyd Warshall algorithm.

  • One of the biggest advantages of the Floyd Warshall algorithm is its versatility. The algorithm can be used to solve a wide range of problems, including finding the shortest path between two nodes in a graph, calculating the transitive closure of a graph, and detecting negative cycles in a graph.
  • Another advantage is its simplicity. Unlike some other algorithms, the Floyd Warshall algorithm is relatively easy to understand and implement. This makes it an ideal choice for students and professionals who are just starting out with graph algorithms.
  • The Floyd Warshall algorithm is very efficient. It has a time complexity of O(n^3), which means it can handle large graphs with ease. Additionally, the algorithm is parallelisable, meaning it can be run on multiple processors to further improve its efficiency.

Disadvantages of Floyd Warshall Algorithm

There are a few disadvantages to using the Floyd Warshall algorithm.

  • The algorithm is quite complex and can be difficult to understand.
  • The algorithm can be slow when used on large graphs.
  • The algorithm does not always find the shortest path between two nodes; it can sometimes find a path that is longer than the shortest path.

Keep learning and stay tuned to get the latest updates on GATE Exam along with GATE Eligibility Criteria, GATE 2023, GATE Admit Card, GATE Syllabus for CSE (Computer Science Engineering), GATE CSE Notes, GATE CSE Question Paper, and more.

Also Explore,