Uses of Interface
io.openml.gearbox.algorithms.bfs.Node
Packages that use Node
-
Uses of Node in io.openml.gearbox.algorithms.bfs
Methods in io.openml.gearbox.algorithms.bfs that return types with arguments of type NodeMethods in io.openml.gearbox.algorithms.bfs with parameters of type NodeModifier and TypeMethodDescriptionstatic <T> voidBfs.traverse(Node<T> startNode, NodeVisitor<T> visitor) Performs a Breadth-First Search (BFS) traversal starting from a given node.static <T> voidBfs.traverseLeveled(Node<T> startNode, NodeVisitor<T> visitor) Performs a leveled Breadth-First Search (BFS) traversal, i.e.voidThe "visit" operation for different types of user-defined problem.