Searching & Inserting in B+ Trees
There is a visualisation tool for B+ trees available at https://www.cs.usfca.edu/~galles/visualization/BPlusTree.html.
Single vs Multi-Level Indexes
- Single Level Index - Stores in a single list.
- Multi-Level Index - Distributes across different layers.
B+ Tree Leaves (Idea)
Points to tuples with value |
Points to tuples with value |
Points to tuples with value |
Next Leaf |
- Disk Block Size - 512 byte
- Values - 4 byte integers
- Pointers - 8 bytes
With the above example
B+ Tree Inner Nodes (Idea)
Points to a nodes for values |
Points to nodes for values |
Points to nodes for values |
Points to node for values |
Pointers point to B+ tree nodes at the level below.
B+ Tree Leaves (Actually)
- Not all the fields have to be used.
- Fields are filled from left to right.
Unused | Unused | ||||
---|---|---|---|---|---|
Points to tuples with value |
Points to tuples with value |
Points to tuples with value |
Points Nowhere | Next Leaf |
Ensure that at least
To follow with the online tool, we count the next leaf pointer as a pointer, even if there is none.
B+ Tree Nodes (Actually)
- Not all the fields have to be used.
- Fields are filled from left to right.
Unused | Unused | ||||
---|---|---|---|---|---|
Points to a nodes for values |
Points to nodes for values |
Points to nodes for values |
Points to node for values |
Points Nowhere |
Where:
- Number is smallest number in child-sub-tree slightly to the right.
Ensure that at least
B+ Tree Index
A B+ tree index of the prime numbers through 47 looks like the following:
Searching Values
To find the pointer to the rows with value
- Start at the root of the B+ tree.
- While the current node is a non-leaf node:
- f
, proceed to the first child of the node. - Otherwise find the largest
with and proceed to the associated child node.
- f
- If the current node is a leaf:
- If
occurs in the leaf, follow the associated pointer. - If
does not occur in the leaf, return “ doesn’t exist in the index”.
- If
The running time is:
where
The real running time is:
where
Inserting Values
To insert a new value/pointer pair:
- Find the leaf that should contain the value.
- If the leaf is not full, insert the key value pair at a suitable location.
- If the leaf is full:
- Split the leaf to make space for the new value/pointer pair and move half of the pointers to the new node.
- Insert the value/pointer pair
- Connect the leaf to a suitable parent node (which might incur the creation of a new node).
The running time is:
where
The real running time is:
where