Uses of Interface
com.jgalgo.alg.traversal.DfsIter
-
Packages that use DfsIter Package Description com.jgalgo.alg.traversal Algorithms for traversing graphs, such as depth-first search and breadth-first search. -
-
Uses of DfsIter in com.jgalgo.alg.traversal
Subinterfaces of DfsIter in com.jgalgo.alg.traversal Modifier and Type Interface Description static interface
DfsIter.Int
A DFS iterator forIntGraph
.Methods in com.jgalgo.alg.traversal that return DfsIter Modifier and Type Method Description static <V,E>
DfsIter<V,E>DfsIter. newInstance(Graph<V,E> g, V source)
Create a DFS iterator.
-