vers-vecs 1.9.1

A collection of succinct data structures supported by fast implementations of rank and select queries.
Documentation
1
2
3
4
5
6
7
//! Range minimum query data structures. These data structures allow for the calculation of the index of the
//! minimum element in a range of a static array in constant-time. The implementations are located
//! in the [`binary_rmq`] and [`fast_rmq`] modules.

pub mod fast_rmq;

pub mod binary_rmq;