Package com.gengoai.graph.algorithms
Interface GraphSearch<V>
-
- Type Parameters:
V
- the vertex type parameter
- All Known Implementing Classes:
BreadthFirstSearch
,DepthFirstSearch
,DijkstraShortestPath
public interface GraphSearch<V>
Searches for a path between a given starting point and given ending point.
- Author:
- David B. Bracewell
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Edge<V>>
search(V startingPoint, V endingPoint)
Searches for a path from the given starting point to the given ending point
-