2 unstable releases

0.2.0 May 7, 2024
0.1.0 Jun 11, 2020

#227 in Data structures

Download history 5109/week @ 2024-01-27 6334/week @ 2024-02-03 6412/week @ 2024-02-10 6107/week @ 2024-02-17 6609/week @ 2024-02-24 6265/week @ 2024-03-02 7328/week @ 2024-03-09 8205/week @ 2024-03-16 8137/week @ 2024-03-23 6593/week @ 2024-03-30 6226/week @ 2024-04-06 8115/week @ 2024-04-13 5428/week @ 2024-04-20 5679/week @ 2024-04-27 5363/week @ 2024-05-04 5617/week @ 2024-05-11

23,315 downloads per month
Used in 12 crates (5 directly)

MIT/Apache

75KB
2K SLoC

sorted_vector_map

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.

License

sorted_vector_map is both MIT and Apache License, Version 2.0 licensed, as found in the LICENSE-MIT and LICENSE-APACHE files.

Dependencies

~1MB
~19K SLoC