Skip to content

Johnson's Algorithm

Summarized notes from Introduction to Algorithms, Chapter 25

  • for sparse graphs this is faster than matrix squaring or Floyd-Warshall
  • output is |V|×|V| matrix or indicates there is negative weight cycle
  • internally it uses both Dijkstra's and Bellman-Ford
  • uses adjacency list representation
  • performs reweighting
    • reweighting produces new weight function w^
    • w^(u,v)=w(u,v)+h(u)h(v)0
    • h(v) obtained from running Bellman-Ford
    • w^0 for all edges (u,v)E
    • reweighting preserves shortest path in G
    • once all edge weights are nonnegative run Dijkstra's algorithm
  • Cannot perform reweighting if some vertices are unreachable → add new source s that has edge weight 0 and connects to every vV

Implementation

img

Complexity

Running Time
O(VE) Computing w^
O(V2lgV+VE) Johnson's algorithm (Fibonacci heap)
O(VElgV) Johnson's algorithm (Binary min heap)

Example

img