More on balanced trees

Earlier we studied balanced binary search trees, such as AVL trees, that relied on rotation for balancing trees that were only one-level away from balance. An alternative method for balancing is to use multi-way branching trees like B-Trees or 2-3 Trees.

Key properties to multiway balanced trees are:

A multi-way balance tree of order n has a maximum branching factor of n.

Two common kinds of multiway balanced trees are:

Back to the Daily Record.

Back to the class web-page.