dfsLRN
Callable
Type parameters
- T
Parameters
node: BinaryTree<T>
The root to start searching from.
Returns Traversable<T, void>
A generator with the node values in LRN order.
The root to start searching from.
A generator with the node values in LRN order.
Run a depth-first search on the binary tree, that evaluates in the order Left, Right, Node recursively.