Class BellmanFordSP
- Object
-
- edu.princeton.cs.algs4.BellmanFordSP
-
public class BellmanFordSP extends Object
TheBellmanFordSPclass represents a data type for solving the single-source shortest paths problem in edge-weighted digraphs with no negative cycles. The edge weights can be positive, negative, or zero. This class finds either a shortest path from the source vertex s to every other vertex or a negative cycle reachable from the source vertex.This implementation uses a queue-based implementation of the Bellman-Ford-Moore algorithm. The constructor takes Θ(E V) time in the worst case, where V is the number of vertices and E is the number of edges. In practice, it performs much better. Each instance method takes Θ(1) time. It uses Θ(V) extra space (not including the edge-weighted digraph).
This correctly computes shortest paths if all arithmetic performed is without floating-point rounding error or arithmetic overflow. This is the case if all edge weights are integers and if none of the intermediate results exceeds 252. Since all intermediate results are sums of edge weights, they are bounded by V C, where V is the number of vertices and C is the maximum absolute value of any edge weight.
For additional documentation, see Section 4.4 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.
- Author:
- Robert Sedgewick, Kevin Wayne
-
-
Constructor Summary
Constructors Constructor Description BellmanFordSP(EdgeWeightedDigraph digraph, int s)Computes a shortest paths tree fromsto every other vertex in the edge-weighteddigraph.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description doubledistTo(int v)Returns the length of a shortest path from the source vertexsto vertexv.booleanhasNegativeCycle()Is there a negative cycle reachable from the source vertexs?booleanhasPathTo(int v)Is there a path from the sourcesto vertexv?static voidmain(String[] args)Unit tests theBellmanFordSPdata type.Iterable<DirectedEdge>negativeCycle()Returns a negative cycle reachable from the source vertexs, ornullif there is no such cycle.Iterable<DirectedEdge>pathTo(int v)Returns a shortest path from the sourcesto vertexv.
-
-
-
Constructor Detail
-
BellmanFordSP
public BellmanFordSP(EdgeWeightedDigraph digraph, int s)
Computes a shortest paths tree fromsto every other vertex in the edge-weighteddigraph.- Parameters:
digraph- the acyclic digraphs- the source vertex- Throws:
IllegalArgumentException- unless0 <= s < V
-
-
Method Detail
-
hasNegativeCycle
public boolean hasNegativeCycle()
Is there a negative cycle reachable from the source vertexs?- Returns:
trueif there is a negative cycle reachable from the source vertexs, andfalseotherwise
-
negativeCycle
public Iterable<DirectedEdge> negativeCycle()
Returns a negative cycle reachable from the source vertexs, ornullif there is no such cycle.- Returns:
- a negative cycle reachable from the source vertex
sas an iterable of edges, andnullif there is no such cycle
-
distTo
public double distTo(int v)
Returns the length of a shortest path from the source vertexsto vertexv.- Parameters:
v- the destination vertex- Returns:
- the length of a shortest path from the source vertex
sto vertexv;Double.POSITIVE_INFINITYif no such path - Throws:
UnsupportedOperationException- if there is a negative cost cycle reachable from the source vertexsIllegalArgumentException- unless0 <= v < V
-
hasPathTo
public boolean hasPathTo(int v)
Is there a path from the sourcesto vertexv?- Parameters:
v- the destination vertex- Returns:
trueif there is a path from the source vertexsto vertexv, andfalseotherwise- Throws:
IllegalArgumentException- unless0 <= v < V
-
pathTo
public Iterable<DirectedEdge> pathTo(int v)
Returns a shortest path from the sourcesto vertexv.- Parameters:
v- the destination vertex- Returns:
- a shortest path from the source
sto vertexvas an iterable of edges, andnullif no such path - Throws:
UnsupportedOperationException- if there is a negative cost cycle reachable from the source vertexsIllegalArgumentException- unless0 <= v < V
-
main
public static void main(String[] args)
Unit tests theBellmanFordSPdata type.- Parameters:
args- the command-line arguments
-
-