2 unstable releases

0.2.0 May 7, 2024
0.1.0 Jun 11, 2020

#1480 in Data structures

Download history 5042/week @ 2024-11-18 4052/week @ 2024-11-25 6090/week @ 2024-12-02 6196/week @ 2024-12-09 6767/week @ 2024-12-16 1502/week @ 2024-12-23 2497/week @ 2024-12-30 4419/week @ 2025-01-06 6921/week @ 2025-01-13 8337/week @ 2025-01-20 7061/week @ 2025-01-27 9542/week @ 2025-02-03 8608/week @ 2025-02-10 7014/week @ 2025-02-17 7749/week @ 2025-02-24 7588/week @ 2025-03-03

31,345 downloads per month
Used in 11 crates (4 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
~21K SLoC