Category
page 1B-tree
B-tree
In computer science, a B-tree is a self-balancing tree data structure that maintains sorted data and allows searches, sequential access, insertions, and deletions in logarithmic time. The B-tree generalizes the binary search tree, allowing nodes to have more than two children.
2–3 tree
B-tree of order 3
B+ tree
B-tree in which each node contains only keys (not key–value pairs), and to which an additional level is added at the bottom with linked leaves
2–3–4 tree
B-tree of order 4
dancing tree
tree data structure similar to B+ trees