edu.princeton.cs.algs4
Class DijkstraUndirectedSP
- java.lang.Object
-
- edu.princeton.cs.algs4.DijkstraUndirectedSP
-
public class DijkstraUndirectedSP extends java.lang.ObjectTheDijkstraUndirectedSPclass represents a data type for solving the single-source shortest paths problem in edge-weighted graphs where the edge weights are nonnegative.This implementation uses Dijkstra's algorithm with a binary heap. The constructor takes time proportional to E log V, where V is the number of vertices and E is the number of edges. Each call to
distTo(int)andhasPathTo(int)takes constant time; each call topathTo(int)takes time proportional to the number of edges in the shortest path returned.For additional documentation, see Section 4.4 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne. See
DijkstraSPfor a version on edge-weighted digraphs.
-
-
Constructor Summary
Constructors Constructor and Description DijkstraUndirectedSP(EdgeWeightedGraph G, int s)Computes a shortest-paths tree from the source vertexsto every other vertex in the edge-weighted graphG.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description doubledistTo(int v)Returns the length of a shortest path between the source vertexsand vertexv.booleanhasPathTo(int v)Returns true if there is a path between the source vertexsand vertexv.static voidmain(java.lang.String[] args)Unit tests theDijkstraUndirectedSPdata type.java.lang.Iterable<Edge>pathTo(int v)Returns a shortest path between the source vertexsand vertexv.
-
-
-
Constructor Detail
-
DijkstraUndirectedSP
public DijkstraUndirectedSP(EdgeWeightedGraph G, int s)
Computes a shortest-paths tree from the source vertexsto every other vertex in the edge-weighted graphG.- Parameters:
G- the edge-weighted digraphs- the source vertex- Throws:
java.lang.IllegalArgumentException- if an edge weight is negativejava.lang.IllegalArgumentException- unless0 <= s < V
-
-
Method Detail
-
distTo
public double distTo(int v)
Returns the length of a shortest path between the source vertexsand vertexv.- Parameters:
v- the destination vertex- Returns:
- the length of a shortest path between the source vertex
sand the vertexv;Double.POSITIVE_INFINITYif no such path - Throws:
java.lang.IllegalArgumentException- unless0 <= v < V
-
hasPathTo
public boolean hasPathTo(int v)
Returns true if there is a path between the source vertexsand vertexv.- Parameters:
v- the destination vertex- Returns:
trueif there is a path between the source vertexsto vertexv;falseotherwise- Throws:
java.lang.IllegalArgumentException- unless0 <= v < V
-
pathTo
public java.lang.Iterable<Edge> pathTo(int v)
Returns a shortest path between the source vertexsand vertexv.- Parameters:
v- the destination vertex- Returns:
- a shortest path between the source vertex
sand vertexv;nullif no such path - Throws:
java.lang.IllegalArgumentException- unless0 <= v < V
-
main
public static void main(java.lang.String[] args)
Unit tests theDijkstraUndirectedSPdata type.- Parameters:
args- the command-line arguments
-
-
DataMelt 3.0 © DataMelt by jWork.ORG