PostgreSQL, MySQL, SQLite, and similar systems
Relational database indexes
Ordered indexes commonly rely on B-Tree variants so the engine can locate rows quickly and also scan ranges efficiently.
Why this structure fits
Each node stores many keys, so finding a row requires very few page reads.
