public class BreadthFirstPaths extends java.lang.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.
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 s and every other vertex in graph G.
|
BreadthFirstPaths(Graph G,
java.lang.Iterable<java.lang.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 s
(or sources) and vertex v?
|
boolean |
hasPathTo(int v)
Is there a path between the source s (or sources) and vertex v?
|
static void |
main(java.lang.String[] args)
Unit tests the BreadthFirstPaths data type.
|
java.lang.Iterable<java.lang.Integer> |
pathTo(int v)
Returns a shortest path between s (or sources) and v, or
null if no such path.
|
public BreadthFirstPaths(Graph G, int s)
G - the graphs - the source vertexpublic BreadthFirstPaths(Graph G, java.lang.Iterable<java.lang.Integer> sources)
G - the graphsources - the source verticespublic boolean hasPathTo(int v)
v - the vertexpublic int distTo(int v)
v - the vertexpublic java.lang.Iterable<java.lang.Integer> pathTo(int v)
v - the vertexpublic static void main(java.lang.String[] args)