| Crates.io | sorted_vector_map |
| lib.rs | sorted_vector_map |
| version | 0.2.0 |
| created_at | 2020-06-11 12:56:00.358181+00 |
| updated_at | 2024-05-07 16:07:25.56834+00 |
| description | maps and sets backed by sorted vectors |
| homepage | |
| repository | https://github.com/facebookexperimental/rust-shed |
| max_upload_size | |
| id | 252733 |
| size | 87,338 |
sorted_vector_map is an implementation of an ordered map and set (like
std::collections::BTreeMap and std::collections::BTreeSet) using a sorted
vector as the backing store.
Sorted vector maps are appropriate when data is frequently loaded from an ordered source, queried a small number of times, and infrequently modified through insertion or removal.
Loading from an ordered sequence is O(n) through an optimization to insert
that handles in-order insertions specially. Extension of the sequence is also
optimized, where extending a map or set of size n with m elements in a single
operation is O(n + m log m). Otherwise, loading from an unordered sequence is
O(n^2).
Look-up is O(log n) through binary search. Insertion and removal are both O(n), as are set operations like intersection, union and difference.
sorted_vector_map is part of
rust-shed. See the
rust-shed repository for more documentation, including the contributing guide.
sorted_vector_map is both MIT and Apache License, Version 2.0 licensed, as found in the LICENSE-MIT and LICENSE-APACHE files.