Interface | Description |
---|---|
GraphIterator |
A graph iterator.
|
Class | Description |
---|---|
AbstractGraphIterator |
An empty implementation of a graph iterator to minimize the effort required
to implement graph iterators.
|
BreadthFirstIterator |
A breadth-first iterator for a directed and an undirected graph.
|
ClosestFirstIterator |
A closest-first iterator for a directed or undirected graph.
|
CrossComponentIterator |
Provides a cross-connected-component traversal functionality for iterator
subclasses.
|
DepthFirstIterator |
A depth-first iterator for a directed and an undirected graph.
|
TopologicalOrderIterator |
Implements topological order traversal for a directed graph.
|