segment-tree

This crate contains various data structures useful for quickly performing interval queries or modifications in some array.

The data structures in this crate are all trees. The trees are represented using an array for high performance and low memory usage. Despite the name of the crate, not every tree in this crate is a segment tree.

Cargo.toml

toml [dependencies] segment-tree = "2"

Example

The example below shows a segment tree, which allows queries to any interval in logaritmic time.

```rust use segmenttree::SegmentPoint; use segmenttree::ops::Min;

let array = vec![4, 3, 2, 1, 2, 3, 4]; let mut tree = SegmentPoint::build(array, Min);

// Compute the minimum of the whole array. assert_eq!(tree.query(0, tree.len()), 1);

// Compute the minimum of part of the array. assert_eq!(tree.query(0, 3), 2);

// Change the 1 into a 10. tree.modify(3, 10);

// The minimum of the whole array is now 2. assert_eq!(tree.query(0, tree.len()), 2); ```

This crate also has a PointSegment type, which instead allows modifications to intervals.

The related crate prefix_sum might also be of interest.