Binary Tree

A BinaryTree is a tree with zero or two branches from each node. Binary means some operations are of order O(log n).

Only if balanced.

For many variations of BinaryTree's, see DataStructures.


CategoryDataStructure