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.

Connect