Module woodland::binary_tree[][src]

Expand description

Implementation of a simple Binary Tree, which has no invariants to maintain.

Structs

BinaryTree

The most basic tree in woodland. All nodes stored in the tree are BinaryTreeNode<T>s.

BinaryTreeNode

The most simple node type in woodland. Stores a data field, a NodeId, as well as a left and right child.