DepthFirstGraphExtension<V, E> extension
- on
-
- Graph<
V, E>
- Graph<
Methods
-
depthFirst(
V vertex, {StorageStrategy< V> ? vertexStrategy}) → Iterable<V> -
Available on Graph<
Traverses the vertices in a depth-first order, starting withV, E> , provided by the DepthFirstGraphExtension extensionvertex
. -
depthFirstAll(
Iterable< V> vertices, {StorageStrategy<V> ? vertexStrategy}) → Iterable<V> -
Available on Graph<
Traverses the vertices in a depth-first order, starting withV, E> , provided by the DepthFirstGraphExtension extensionvertices
.