public class BreadthFirstPaths extends Object
This implementation uses breadth-first search. The constructor takes time proportional to V + E, where V is the number of vertices and E is the number of edges. It uses extra space (not including the graph) proportional to V.
For additional documentation, see Section 4.1 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.
| Constructor and Description |
|---|
BreadthFirstPaths(Graph G,
int s)
Computes the shortest path between the source vertex s
and every other vertex in the graph G.
|
BreadthFirstPaths(Graph G,
Iterable<Integer> sources)
Computes the shortest path between any one of the source vertices in sources
and every other vertex in graph G.
|
| Modifier and Type | Method and Description |
|---|---|
int |
distTo(int v)
Returns the number of edges in a shortest path between the source vertex s
(or sources) and vertex v?
|
boolean |
hasPathTo(int v)
Is there a path between the source vertex s (or sources) and vertex v?
|
static void |
main(String[] args)
Unit tests the BreadthFirstPaths data type.
|
Iterable<Integer> |
pathTo(int v)
Returns a shortest path between the source vertex s (or sources)
and v, or null if no such path.
|
public BreadthFirstPaths(Graph G, int s)
G - the graphs - the source vertexpublic boolean hasPathTo(int v)
v - the vertexpublic int distTo(int v)
v - the vertexpublic Iterable<Integer> pathTo(int v)
v - the vertexpublic static void main(String[] args)
Copyright © 2014. All Rights Reserved.