Next:
Up:
Previous:
Insert
If node x is a non-full (< 2t-1 keys) leaf, then insert new key k in node x
If node x is non-full but not a leaf, then recurse to appropriate child of x
If node x is full (2t-1 keys), then ``split'' the node into
x
1
and
x
2
, and
recurse to appropriate node
x
1
or
x
2
.
In this example t = 2.
Click mouse to advance to next frame.
Next:
Up:
Previous: