Tag:succinct-data-structures
All the articles with the tag "succinct-data-structures".
Engineering a fixed-width bit-packed Integer Vector in Rust
Posted on:September 24, 2025Design and implementation of a memory-efficient, fixed-width bit-packed integer vector in Rust, with extremely fast random access.
Building a Thread-Safe, Bit-Packed Atomic Vector in Rust
Posted on:September 16, 2025Engineering a thread-safe, bit-packed integer vector in Rust, using a hybrid model of lock-free and lock-based concurrency to handle operations that span hardware word boundaries.