17 releases

Uses old Rust 2015

0.5.2 Aug 29, 2019
0.4.4 Mar 28, 2018
0.4.2 Oct 17, 2016
0.4.0 Jun 28, 2016

#1106 in Data structures

Download history 582/week @ 2024-07-23 902/week @ 2024-07-30 957/week @ 2024-08-06 537/week @ 2024-08-13 814/week @ 2024-08-20 1155/week @ 2024-08-27 1056/week @ 2024-09-03 899/week @ 2024-09-10 730/week @ 2024-09-17 1181/week @ 2024-09-24 1286/week @ 2024-10-01 1389/week @ 2024-10-08 1055/week @ 2024-10-15 1241/week @ 2024-10-22 959/week @ 2024-10-29 1434/week @ 2024-11-05

4,845 downloads per month
Used in 18 crates (7 directly)

MIT/Apache

170KB
4K SLoC

Succinct Data Structures for Rust

Build Status Crates.io License: MIT License: Apache 2.0

So far we have:

  • bit vectors and bit buffer;
  • integer vectors with arbitrary-sized (1- to 64-bit) elements;
  • a variety of universal codes;
  • constant-time rank queries; and
  • O(lg lg n)-time select queries based on binary search over ranks.

Usage

It’s on crates.io, so you can add

[dependencies]
succinct = "0.5.2"

to your Cargo.toml.

Credits

  • IntVec borrows some implementation techniques from nbitsvec. The main difference is that nbitsvec uses a typenum to put the element size (in bits) as a parameter to the vector type. Also, nbitsvec is likely to be faster.

  • Some of the API is inspired by SDSL, a C++ succinct data structures library. It’s much more complete than succinct, and probably more correct and faster too.

Dependencies

~175–265KB