seg-tree 0.3.0

A simple segment tree library
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod lazy_set_wrapper;
mod max;
mod max_subarray_sum;
mod min;
mod persistent_wrapper;
mod sum;

pub use self::{
    lazy_set_wrapper::LazySetWrapper, max::Max, max_subarray_sum::MaxSubArraySum, min::Min,
    persistent_wrapper::PersistentWrapper, sum::Sum,
};