2-3-4 Trees and Insertion

A 2-3-4 tree is a self-balancing search tree used for efficient data storage and retrieval.

What is a 2-3-4 Tree?

Insertion in a 2-3-4 Tree

Insertion in a 2-3-4 tree follows these steps:

  1. Locate the leaf node where the new value should be inserted.
  2. If the node has space, insert the value in sorted order.
  3. If the node is full (contains 3 values), **split** the node:
  4. Repeat splitting up the tree if its necessary to maintain balance.

Diagram of a 2-3-4 Tree

Diagram of a 2-3-4 tree

Learn More

For more information, visit Wikipedia's 2-3-4 Tree Page.