.. /index

Succinct Data Structures

Succinct Data Structures

Data structures that use space close to the information-theoretic minimum while still supporting efficient queries — trading CPU cycles for extraordinary space efficiency.

SDSL-lite

The SDSL-lite library (Simon Gog et al.) is the reference implementation, packaging highlights of 40 research publications in C++ templates:

When to use

Succinct structures excel when space is the primary constraint and you can afford moderate CPU overhead per query. Typical applications: bioinformatics (genome indexes), information retrieval (compressed inverted indexes), and any domain where the dataset is too large for conventional structures but random access is still needed.

Relationship to other approaches

learned-indexes also achieve space reduction but through data-dependent modeling rather than information-theoretic compression. Binary Fuse filters apply similar space-optimality thinking to probabilistic membership queries. Finite State Transducers are succinct representations specifically for sorted string sets, sharing both prefixes and suffixes.

Linked from

Sources