5 — B+ Tree
Purpose
[stub: b-plus-tree]
Metadata
| Author | Amit Singh |
| Scope | data-structures-algorithms |
Local graph
Related notes
1 — Sparse Table
O(1) range-minimum/maximum queries on a static array via O(n log n) precomputation.
2 — Treap
Randomized BST combining heap priorities with BST ordering for expected O(log n) balance without explicit rotation logic.
3 — Rope
Binary-tree-of-string-chunks structure for O(log n) concatenation/insertion on very large strings.
4 — B-Tree
Multi-way balanced tree minimizing disk reads, the structure behind most database indexes.