12.B-Trees (1)§
The B-Tree is an extension of the 2-3 Tree.
The B-Tree is now the standard file organization for applications requiring insertion, deletion, and key range searches.
- Databases
- File Systems
The B-Tree is an extension of the 2-3 Tree.
The B-Tree is now the standard file organization for applications requiring insertion, deletion, and key range searches.
- Databases
- File Systems
A B-Tree node is usually selected to match the size of a disk block.
- A B-Tree node could have hundreds of children.
B-trees are really good at managing a sorted list
- They break the list into manageable chunks
- The leaves of the B+-tree form the list
- The internal nodes of the B+-tree merely help find the right chunk