B-tree
A height-balanced search-tree data structure that stores multiple keys per node and keeps all leaves at the same depth. Its high branching factor reduces the number of storage accesses needed for search, insertion, and deletion.
Linked from 8 pages
Data structureBroader topic: B-trees reduce disk accesses in database and filesystem indexes.
MySQLRelated: InnoDB indexes commonly use B-tree structures to speed up searches and sorting.
HFS PlusNarrower topic: HFS Plus uses B-trees to index catalogs, extents, and attributes.
Binary treeCompared with: B-trees trade binary branching for shallow height in storage systems.