Internal Node
p1 | k1 | p2 | k2 | p3 |
p1 | : | Pointer to the first child | |
p2 | : | Pointer to the second child | |
p3 | : | Pointer to the third child | |
k1 | : | Smallest key that is a descendent of the second child | |
k2 | : | Smallest key that is a descendent of the third child |
Leaf Node
key | other fields |
Records are placed at the leaves. Each leaf contains a record (and key)
Example: See Figure 5.23
Search
at least 1 + log3n levels
at most 1 + log2n levels