Please enable JavaScript.
Coggle requires JavaScript to display documents.
B+ Tree Index - Coggle Diagram
B+ Tree Index
-
-
Search
-
-
examine non-leafs to find correct child,
-
Design
fan-out f
-
-
dynamic, but assume constant
fill-factor F
-
<1, not full, slack for quick insertions
-
-
Cost
Equality Search
I/O cost = h - LB + 1 + I (0 if #1, 1 if #2)
-
-
-
Delete
-
only d - 1 entries
redistribute, borrow entries from a neighbor or all siblings
-
if redistribution fails, merge L and sibling
delete an entry (key, pointer pair) from parent of L
may propagate up, and redistribute non-leafs
-