Class DijkstraSP
- Object
-
- edu.princeton.cs.algs4.DijkstraSP
-
public class DijkstraSP extends Object
TheDijkstraSPclass represents a data type for solving the single-source shortest paths problem in edge-weighted digraphs where the edge weights are non-negative.This implementation uses Dijkstra's algorithm with a binary heap. The constructor takes Θ(E log V) time in the worst case, where V is the number of vertices and E is the number of edges. 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 weight of any edge.
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 DijkstraSP(EdgeWeightedDigraph digraph, int s)Computes a shortest-paths tree from the source vertexsto 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.booleanhasPathTo(int v)Returns true if there is a path from the source vertexsto vertexv.static voidmain(String[] args)Unit tests theDijkstraSPdata type.Iterable<DirectedEdge>pathTo(int v)Returns a shortest path from the source vertexsto vertexv.
-
-
-
Constructor Detail
-
DijkstraSP
public DijkstraSP(EdgeWeightedDigraph digraph, int s)
Computes a shortest-paths tree from the source vertexsto every other vertex in the edge-weighteddigraph.- Parameters:
digraph- the edge-weighted digraphs- the source vertex- Throws:
IllegalArgumentException- if an edge weight is negativeIllegalArgumentException- unless0 <= s < V
-
-
Method Detail
-
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:
IllegalArgumentException- unless0 <= v < V
-
hasPathTo
public boolean hasPathTo(int v)
Returns true if there is a path from the source vertexsto vertexv.- Parameters:
v- the destination vertex- Returns:
trueif there is a path from the source vertexsto vertexv;falseotherwise- Throws:
IllegalArgumentException- unless0 <= v < V
-
pathTo
public Iterable<DirectedEdge> pathTo(int v)
Returns a shortest path from the source vertexsto vertexv.- Parameters:
v- the destination vertex- Returns:
- a shortest path from the source vertex
sto vertexvas an iterable of edges, andnullif no such path - Throws:
IllegalArgumentException- unless0 <= v < V
-
main
public static void main(String[] args)
Unit tests theDijkstraSPdata type.- Parameters:
args- the command-line arguments
-
-