Edit page

Floyd warshall

Floyd–Warshall algorithm (also known as Floyd's algorithm, the Roy–Warshall algorithm, the Roy–Floyd algorithm, or the WFI algorithm) is an algorithm for finding shortest paths in a weighted graph with positive or negative edge weights (but with no negative cycles). A single execution of the algorithm will find the lengths (summed weights) 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 R, or (in connection with the Schulze voting system) widest paths between all pairs of vertices in a weighted graph. [Source: Wikipedia]

Floyd warshall

Complexity

NameBest timeSpaceComments
Floyd warshallv3v2

* Where v = number of vertices; e = number of edges

References

  • Geeksforgeeks
  • Wikipedia
  • YouTube
  • Programiz
  • cp-algorithms