Uses of Class
dev.nm.graph.algorithm.traversal.BFS.Node
-
Packages that use BFS.Node Package Description dev.nm.graph.algorithm.traversal -
-
Uses of BFS.Node in dev.nm.graph.algorithm.traversal
Subclasses of BFS.Node in dev.nm.graph.algorithm.traversal Modifier and Type Class Description static class
DFS.Node<V>
This is a node in a DFS-spanning tree.Methods in dev.nm.graph.algorithm.traversal that return types with arguments of type BFS.Node Modifier and Type Method Description static <V,W extends V>
List<BFS.Node<V>>BFS. BFS(Graph<W,? extends Edge<V>> g, V root, int time)
Runs the breadth-first-search on a graph from a designated root.List<BFS.Node<V>>
BFS. getOrderedNodes()
List<? extends BFS.Node<V>>
BFS. track(V root, int time)
Methods in dev.nm.graph.algorithm.traversal with parameters of type BFS.Node Modifier and Type Method Description protected void
BFS.Node. setParent(BFS.Node<V> parent)
-