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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
//! This module contains a simple [bit vector][BitVec] implementation with no overhead and a fast succinct
//! bit vector implementation with [rank and select queries][fast_rs_vec::RsVec].
use crate::util::impl_iterator;
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 stores bits densely
/// in 64 bit limbs. The last limb may be partially filled. Other than that, there is no overhead.
///
/// # Example
/// ```rust
/// use vers_vecs::{BitVec, RsVec};
///
/// let mut bit_vec = BitVec::new();
/// bit_vec.append_bit(0u64);
/// bit_vec.append_bit_u32(1u32);
/// bit_vec.append_word(0b1010_1010_1010_1010u64); // appends exactly 64 bits
///
/// assert_eq!(bit_vec.len(), 66);
/// assert_eq!(bit_vec.get(0), Some(0u64));
/// assert_eq!(bit_vec.get(1), Some(1u64));
/// ```
#[derive(Clone, Debug, Default)]
#[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::default()
}
/// 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 }
}
/// Create a new bit vector with all ones and the given length. The length is measured in bits.
#[must_use]
pub fn from_ones(len: usize) -> Self {
let mut data = vec![u64::MAX; len / WORD_SIZE];
if len % WORD_SIZE != 0 {
data.push((1 << len) - 1);
}
Self { data, len }
}
/// Append a bit to the bit vector. The bit is given as a boolean, where `true` means 1 and
/// `false` means 0.
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);
} else {
self.data[self.len / WORD_SIZE] &= !(1 << (self.len % WORD_SIZE));
}
self.len += 1;
}
/// Drop the last n bits from the bit vector. If more bits are dropped than the bit vector
/// contains, the bit vector is cleared.
pub fn drop_last(&mut self, n: usize) {
if n > self.len {
self.data.clear();
self.len = 0;
return;
}
let new_limb_count = (self.len - n + WORD_SIZE - 1) / WORD_SIZE;
// cut off limbs that we no longer need
if new_limb_count < self.data.len() {
self.data.truncate(new_limb_count);
}
// update bit vector length
self.len -= n;
}
/// Append a bit from a u64. 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);
}
if bit % 2 == 1 {
self.data[self.len / WORD_SIZE] |= 1 << (self.len % WORD_SIZE);
} else {
self.data[self.len / WORD_SIZE] &= !(1 << (self.len % WORD_SIZE));
}
self.len += 1;
}
/// Append a bit from a u32. The least significant bit is appended to the bit vector.
/// All other bits are ignored.
pub fn append_bit_u32(&mut self, bit: u32) {
self.append_bit(u64::from(bit));
}
/// Append a bit from a u8. The least significant bit is appended to the bit vector.
/// All other bits are ignored.
pub fn append_bit_u8(&mut self, bit: u8) {
self.append_bit(u64::from(bit));
}
/// Append a word to the bit vector. The bits are appended in little endian order (i.e. the first
/// bit of the word is appended first).
pub fn append_word(&mut self, word: u64) {
if self.len % WORD_SIZE == 0 {
self.data.push(word);
} else {
// zero out the unused bits before or-ing the new one, to ensure no garbage data remains
self.data[self.len / WORD_SIZE] &= !(u64::MAX << (self.len % WORD_SIZE));
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 bits are appended in little-endian order
/// (i.e. 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.
///
/// # Panics
/// Panics if `len` is larger than 64.
pub fn append_bits(&mut self, mut bits: u64, len: usize) {
assert!(len <= 64, "Cannot append more than 64 bits");
// zero out garbage data
if len < 64 {
bits &= (1 << len) - 1;
}
if self.len % WORD_SIZE == 0 {
self.data.push(bits);
} else {
// zero out the unused bits before or-ing the new one, to ensure no garbage data remains
self.data[self.len / WORD_SIZE] &= !(u64::MAX << (self.len % WORD_SIZE));
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.
///
/// # Panics
/// If the position is larger than the length of the vector, the function panics.
pub fn flip_bit(&mut self, pos: usize) {
assert!(pos < self.len, "Index out of bounds");
self.flip_bit_unchecked(pos);
}
/// Flip the bit at the given position. If the position is larger than the length of the
/// vector, the behavior is undefined (the function will either modify unused memory or panic.
/// This will not corrupt memory, but will affect invalid unchecked get operations).
pub fn flip_bit_unchecked(&mut self, pos: usize) {
self.data[pos / WORD_SIZE] ^= 1 << (pos % WORD_SIZE);
}
/// Return the bit at the given position.
/// The bit takes the least significant bit of the returned u64 word.
/// If the position is larger than the length of the vector, None is returned.
#[must_use]
pub fn get(&self, pos: usize) -> Option<u64> {
if pos >= self.len {
None
} else {
Some(self.get_unchecked(pos))
}
}
/// Return the bit at the given position.
/// The bit takes the least significant bit of the returned u64 word.
/// If the position is larger than the length of the vector,
/// the behavior is undefined (the function will either return unpredictable data or panic).
#[must_use]
pub fn get_unchecked(&self, pos: usize) -> u64 {
(self.data[pos / WORD_SIZE] >> (pos % WORD_SIZE)) & 1
}
/// Return whether the bit at the given position is set.
/// If the position is larger than the length of the vector, None is returned.
#[must_use]
pub fn is_bit_set(&self, pos: usize) -> Option<bool> {
if pos >= self.len {
None
} else {
Some(self.is_bit_set_unchecked(pos))
}
}
/// Return whether the bit at the given position is set.
/// If the position is larger than the length of the vector,
/// the behavior is undefined (the function will either return unpredictable results or panic).
#[must_use]
pub fn is_bit_set_unchecked(&self, pos: usize) -> bool {
self.get_unchecked(pos) != 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.
/// If the position at the end of the query is larger than the length of the vector,
/// None is returned (even if the query partially overlaps with the vector).
/// If the length of the query is larger than 64, None is returned.
#[must_use]
pub fn get_bits(&self, pos: usize, len: usize) -> Option<u64> {
if len > WORD_SIZE {
return None;
}
if pos + len > self.len {
None
} else {
Some(self.get_bits_unchecked(pos, len))
}
}
/// Return multiple bits at the given position. The number of bits to return is given by `len`.
/// At most 64 bits can be returned.
///
/// This function is always inlined, because it gains a lot from loop optimization and
/// can utilize the processor pre-fetcher better if it is.
///
/// # Panics
/// If the position is larger than the length of the vector,
/// the behavior is undefined (the function will either return any valid results padded with unpredictable
/// memory or panic).
/// If the length of the query is larger than 64, the behavior is undefined.
#[must_use]
#[allow(clippy::inline_always)]
#[inline(always)] // inline to gain loop optimization and pipeline advantages for elias fano
pub fn get_bits_unchecked(&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
} else 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_iterator! { BitVec, BitVecIter, BitVecRefIter }
#[cfg(test)]
mod tests;