1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
//! This module contains a simple bit vector implementation with no overhead and a fast succinct
//! [bit vector][fast_rs_vec::RsVec] implementation with rank and select queries.
use std::mem::size_of;
pub mod fast_rs_vec;
/// Size of a word in bitvectors. All vectors operate on 64-bit words.
const WORD_SIZE: usize = 64;
/// A simple bit vector that does not support rank and select queries. It has a constant memory
/// overhead of 32 bytes on the stack.
#[derive(Clone, Debug)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct BitVec {
data: Vec<u64>,
len: usize,
}
impl BitVec {
/// Create a new empty bit vector.
#[must_use]
pub fn new() -> Self {
Self {
data: Vec::new(),
len: 0,
}
}
/// Create a new empty bit vector with the given capacity. The capacity is measured in bits.
#[must_use]
pub fn with_capacity(capacity: usize) -> Self {
Self {
data: Vec::with_capacity(capacity / WORD_SIZE + 1),
len: 0,
}
}
/// Create a new bit vector with all zeros and the given length. The length is measured in bits.
#[must_use]
pub fn from_zeros(len: usize) -> Self {
let mut data = vec![0; len / WORD_SIZE];
if len % WORD_SIZE != 0 {
data.push(0);
}
Self { data, len }
}
/// Append a bit to the bit vector.
pub fn append(&mut self, bit: bool) {
if self.len % WORD_SIZE == 0 {
self.data.push(0);
}
if bit {
self.data[self.len / WORD_SIZE] |= 1 << (self.len % WORD_SIZE);
}
self.len += 1;
}
/// Drop the last n bits from the bit vector.
pub fn truncate(&mut self, n: usize) {
self.len -= n;
if self.len / WORD_SIZE > 0 {
self.data.truncate(self.len / WORD_SIZE);
}
}
/// Append a bit from a quad-word. The least significant bit is appended to the bit vector.
/// All other bits are ignored.
pub fn append_bit(&mut self, bit: u64) {
if self.len % WORD_SIZE == 0 {
self.data.push(0);
}
self.data[self.len / WORD_SIZE] |= (bit % 2) << (self.len % WORD_SIZE);
self.len += 1;
}
/// Append a word to the bit vector. The least significant bit is appended first.
pub fn append_word(&mut self, word: u64) {
if self.len % WORD_SIZE == 0 {
self.data.push(word);
} else {
self.data[self.len / WORD_SIZE] |= word << (self.len % WORD_SIZE);
self.data.push(word >> (WORD_SIZE - self.len % WORD_SIZE));
}
self.len += WORD_SIZE;
}
/// Append multiple bits to the bit vector. The least significant bit is appended first.
/// The number of bits to append is given by `len`. The bits are taken from the least
/// significant bits of `bits`. All other bits are ignored.
pub fn append_bits(&mut self, mut bits: u64, len: usize) {
bits &= (1 << len) - 1;
if self.len % WORD_SIZE == 0 {
self.data.push(bits);
} else {
self.data[self.len / WORD_SIZE] |= bits << (self.len % WORD_SIZE);
if self.len % WORD_SIZE + len > WORD_SIZE {
self.data.push(bits >> (WORD_SIZE - self.len % WORD_SIZE));
}
}
self.len += len;
}
/// Return the length of the bit vector. The length is measured in bits.
#[must_use]
pub fn len(&self) -> usize {
self.len
}
/// Return whether the bit vector is empty (contains no bits).
#[must_use]
pub fn is_empty(&self) -> bool {
self.len == 0
}
/// Flip the bit at the given position.
pub fn flip_bit(&mut self, pos: usize) {
self.data[pos / WORD_SIZE] ^= 1 << (pos % WORD_SIZE);
}
/// Return the bit at the given position.
#[must_use]
pub fn get(&self, pos: usize) -> bool {
self.data[pos / WORD_SIZE] & (1 << (pos % WORD_SIZE)) != 0
}
/// Return multiple bits at the given position. The number of bits to return is given by `len`.
/// At most 64 bits can be returned.
#[must_use]
#[inline(always)] // inline to gain loop optimization and pipeline advantages for elias fano
pub fn get_bits(&self, pos: usize, len: usize) -> u64 {
debug_assert!(len <= WORD_SIZE);
let partial_word = self.data[pos / WORD_SIZE] >> (pos % WORD_SIZE);
if pos % WORD_SIZE + len <= WORD_SIZE {
partial_word & ((1 << len) - 1)
} else {
(partial_word | (self.data[pos / WORD_SIZE + 1] << (WORD_SIZE - pos % WORD_SIZE)))
& ((1 << len) - 1)
}
}
/// Returns the number of bytes on the heap for this vector. Does not include allocated memory
/// that isn't used.
#[must_use]
pub fn heap_size(&self) -> usize {
self.data.len() * size_of::<u64>()
}
}
impl Default for BitVec {
fn default() -> Self {
Self::new()
}
}