Class ShortestPathAllPairsFloydWarshall

  • All Implemented Interfaces:
    ShortestPathAllPairs

    public class ShortestPathAllPairsFloydWarshall
    extends ShortestPathAllPairsAbstract
    The Floyd Warshall algorithm for all pairs shortest path.

    Calculate the shortest path between each pair of vertices in a graph in O(n3) time using O(n2) space. Negative weights are supported.

    Author:
    Barak Ugav