This crates implements map and set with interval keys (ranges x..y).
IntervalMap is implemented using red-black binary tree, where each node contains information
about the smallest start and largest end in its subtree.
The tree takes O(N) space and allows insertion in O(log N).
IntervalMap allows to search for all entries overlapping a query (interval or a point,
output would be sorted by keys). Search takes O(log N + K) where K is the size of the output.
IntervalSet is a newtype over IntervalMap with empty values.
Usage
The following code constructs a small interval map and search for intervals/values overlapping various queries.
let mut map = new;
map.insert;
map.insert;
map.insert;
// Iterate over (interval, &value) pairs that overlap query (.. here).
// Output is sorted by intervals.
assert_eq!;
// Iterate over intervals that overlap query (..20 here). Output is sorted.
assert_eq!;
// Iterate over &values that overlap query (20.. here). Output is sorted by intervals.
assert_eq!;
You can find more detailed usage here.
Changelog
You can find changelog here.
Issues
Please submit issues here or send them to
timofey.prodanov[at]gmail.com.