#stable #binary-search-tree #set #ordered #map #key

stable_bst

An ordered map and set based on a binary search tree. Works with stable Rust 1.9.0.

4 releases (2 breaking)

Uses old Rust 2015

0.2.0 Aug 19, 2016
0.1.0 Jul 9, 2016
0.0.2 Jul 7, 2016
0.0.1 Jul 7, 2016

#2131 in Data structures

Download history 9249/week @ 2024-07-22 3534/week @ 2024-07-29 4158/week @ 2024-08-05 2225/week @ 2024-08-12 4344/week @ 2024-08-19 4381/week @ 2024-08-26 3966/week @ 2024-09-02 5448/week @ 2024-09-09 4494/week @ 2024-09-16 5292/week @ 2024-09-23 4785/week @ 2024-09-30 4784/week @ 2024-10-07 8652/week @ 2024-10-14 7505/week @ 2024-10-21 3249/week @ 2024-10-28 2747/week @ 2024-11-04

22,161 downloads per month
Used in 4 crates (via rustfst)

MIT/Apache

270KB
2.5K SLoC

An ordered map and set based on a binary search tree.

Forked from https://github.com/contain-rs/bst and updated to work with stable Rust (1.9.0).

Documentation here; crate here.


lib.rs:

Maps are collections of unique keys with corresponding values, and sets are just unique keys without a corresponding value.

This crate defines the TreeMap and TreeSet types. Their keys must implement Ord.

TreeMaps are ordered.

Examples

use stable_bst::TreeSet;

let mut tree_set = TreeSet::new();

tree_set.insert(2);
tree_set.insert(1);
tree_set.insert(3);

for i in tree_set.iter() {
   println!("{}", i) // prints 1, then 2, then 3
}

Dependencies