3 — Rope
Purpose
[stub: rope]
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.
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.