1 — Sparse Table
Purpose
[stub: sparse-table]
Metadata
| Author | Amit Singh |
| Scope | data-structures-algorithms |
Local graph
Related notes
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.
5 — B+ Tree
B-tree variant that pushes all values to leaf nodes with a linked list across them, optimized for range scans.