[][src]Module radiate_matrix_tree::tree::iterators

Structs

InOrderIterator

In order iterator for the tree. Since the nodes in the tree have parent references we can walk up and down the tree and don't need a stack.

IterMut

Implement an in order iterator which allows for mutability of the nodes inside the iterator

LevelOrderIterator

Level order iterator struct. A stack is used to hold all nodes from the current level. When the stack is empty, try pushing the node of the next level.