Package com.gengoai.graph.algorithms
Interface GraphTraversal<V>
-
- Type Parameters:
V
- the vertex type parameter
- All Known Implementing Classes:
AbstractGraphTraversal
,BreadthFirstTraversal
,DepthFirstTraversal
,RandomWalk
public interface GraphTraversal<V>
Defines an iterator from a starting vertex to traverse the graph.- Author:
- David B. Bracewell
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<V>
iterator(V startingPoint)
An iterator to traverse the graph starting at the given vertex
-