4 — B-Tree
Purpose
[stub: b-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.
5 — B+ Tree
B-tree variant that pushes all values to leaf nodes with a linked list across them, optimized for range scans.