sucds
: Succinct data structures in Rustsucds
contains some succinct data structures written in Rust.
So far, the following data structures are implemented. All of them are yet another Rust ports of implementations of C++ Succinct library by Ottaviano. For a detailed description of each data structure, please see the respective documentation.
BitVector
RsBitVector
DArray
EliasFano
EliasFanoList
To use sucds
, depend on it in your Cargo manifest:
```toml
[dependencies] sucds = "0.1" ```
This library is free software provided under MIT.