|
|
|
|
|
by aidenn0
254 days ago
|
|
Also, it's very hard to make a b+tree that is ever faster than other data-structures in RAM. Obviously if you don't need (or only rarely need) in-order traversing (or related operations like successor), hash-tables are very fast. If you do need in-order traversing, for small amounts of data, sorted arrays are very fast, and for large amounts of data various types of prefix-tries do very well. |
|