coalesced_intervals

Data structure for maintaining maximally-coalesced 1D intervals

7 releases

0.1.6 Jun 21, 2024
0.1.5 May 12, 2024
Download history 14/week @ 2024-06-26 17/week @ 2024-07-03 157/week @ 2024-07-10 57/week @ 2024-07-17 89/week @ 2024-07-24 92/week @ 2024-07-31 30/week @ 2024-08-07 11/week @ 2024-08-14 2/week @ 2024-08-21 21/week @ 2024-09-04 23/week @ 2024-09-11 17/week @ 2024-09-18 16/week @ 2024-09-25 90/week @ 2024-10-02 50/week @ 2024-10-09

175 downloads per month

Apache-2.0

115KB
319 lines

coalesced_intervals: maintain maximally coalesced 1D intervals

sample usage diagram

extern crate coalesced_intervals;

fn main() {
    let mut ivals = coalesced_intervals::CoalescedIntervals::new();

    // Add `[0, 1)` and `[2, 3)` (there's a hole in the middle).
    ivals.add(0, 1);
    ivals.add(2, 3);
    assert_eq!(ivals.to_vec(), [(0, 1), (2, 3)]);

    // By adding `[1, 2)` we end up with a coalesced segment `[0, 3)`.
    ivals.add(1, 2);
    assert_eq!(ivals.to_vec(), [(0, 3)]);

    // We can see that the coalesced interval has partial overlap
    // with other related intervals.
    assert!(ivals.contains_partial(-1, 1));
    assert!(ivals.contains_partial(1, 2));
    assert!(ivals.contains_partial(2, 4));

    // We can ask for the interval containing some target value.
    assert_eq!(ivals.get_interval_containing(1), Some((0, 3)));
    assert_eq!(ivals.get_interval_containing(4), None);

    // We can ask for the interval that starts at-or-after some value.
    assert_eq!(ivals.get_first_start_from(-1), Some((0, 3)));
    assert_eq!(ivals.get_first_start_from(0), Some((0, 3)));
    assert_eq!(ivals.get_first_start_from(1), None);
}

Dependencies