Class DijkstraUndirectedSP
- Object
-
- edu.princeton.cs.algs4.DijkstraUndirectedSP
-
public class DijkstraUndirectedSP extends Object
TheDijkstraUndirectedSP
class represents a data type for solving the single-source shortest paths problem in edge-weighted graphs 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 graph).
For additional documentation, see Section 4.4 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne. See
DijkstraSP
for a version on edge-weighted digraphs.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.
- Author:
- Robert Sedgewick, Kevin Wayne, Nate Liu
-
-
Constructor Summary
Constructors Constructor Description DijkstraUndirectedSP(EdgeWeightedGraph G, int s)
Computes a shortest-paths tree from the source vertexs
to every other vertex in the edge-weighted graphG
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description double
distTo(int v)
Returns the length of a shortest path between the source vertexs
and vertexv
.boolean
hasPathTo(int v)
Returns true if there is a path between the source vertexs
and vertexv
.static void
main(String[] args)
Unit tests theDijkstraUndirectedSP
data type.Iterable<Edge>
pathTo(int v)
Returns a shortest path between the source vertexs
and vertexv
.
-
-
-
Constructor Detail
-
DijkstraUndirectedSP
public DijkstraUndirectedSP(EdgeWeightedGraph G, int s)
Computes a shortest-paths tree from the source vertexs
to every other vertex in the edge-weighted graphG
.- Parameters:
G
- 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 between the source vertexs
and vertexv
.- Parameters:
v
- the destination vertex- Returns:
- the length of a shortest path between the source vertex
s
and the vertexv
;Double.POSITIVE_INFINITY
if no such path - Throws:
IllegalArgumentException
- unless0 <= v < V
-
hasPathTo
public boolean hasPathTo(int v)
Returns true if there is a path between the source vertexs
and vertexv
.- Parameters:
v
- the destination vertex- Returns:
true
if there is a path between the source vertexs
to vertexv
;false
otherwise- Throws:
IllegalArgumentException
- unless0 <= v < V
-
pathTo
public Iterable<Edge> pathTo(int v)
Returns a shortest path between the source vertexs
and vertexv
.- Parameters:
v
- the destination vertex- Returns:
- a shortest path between the source vertex
s
and vertexv
;null
if no such path - Throws:
IllegalArgumentException
- unless0 <= v < V
-
main
public static void main(String[] args)
Unit tests theDijkstraUndirectedSP
data type.- Parameters:
args
- the command-line arguments
-
-