pub struct Rank9SelIndex { /* private fields */ }
Expand description

The index implementation of Rank9Sel separated from the bit vector.

Implementations§

source§

impl Rank9SelIndex

source

pub fn new(bv: &BitVector) -> Self

Creates a new vector from input bit vector bv.

source

pub fn select1_hints(self) -> Self

Builds an index for faster select1.

source

pub fn select0_hints(self) -> Self

Builds an index for faster select0.

source

pub fn num_ones(&self) -> usize

Gets the number of bits set.

source

pub fn num_zeros(&self) -> usize

Gets the number of bits unset.

source

pub unsafe fn rank1(&self, bv: &BitVector, pos: usize) -> Option<usize>

Returns the number of ones from the 0-th bit to the pos-1-th bit, or None if bv.len() < pos.

Arguments
  • bv: Bit vector used in construction.
  • pos: Bit position.
Complexity
  • Constant
Safety

bv must be the one used in construction.

Examples
use sucds::bit_vectors::{BitVector, rank9sel::inner::Rank9SelIndex};

let bv = BitVector::from_bits([true, false, false, true]);
let idx = Rank9SelIndex::new(&bv);

unsafe {
    assert_eq!(idx.rank1(&bv, 1), Some(1));
    assert_eq!(idx.rank1(&bv, 2), Some(1));
    assert_eq!(idx.rank1(&bv, 3), Some(1));
    assert_eq!(idx.rank1(&bv, 4), Some(2));
    assert_eq!(idx.rank1(&bv, 5), None);
}
source

pub unsafe fn rank0(&self, bv: &BitVector, pos: usize) -> Option<usize>

Returns the number of zeros from the 0-th bit to the pos-1-th bit, or None if bv.len() < pos.

Arguments
  • bv: Bit vector used in construction.
  • pos: Bit position.
Complexity
  • Constant
Safety

bv must be the one used in construction.

Examples
use sucds::bit_vectors::{BitVector, rank9sel::inner::Rank9SelIndex};

let bv = BitVector::from_bits([true, false, false, true]);
let idx = Rank9SelIndex::new(&bv);

unsafe {
    assert_eq!(idx.rank0(&bv, 1), Some(0));
    assert_eq!(idx.rank0(&bv, 2), Some(1));
    assert_eq!(idx.rank0(&bv, 3), Some(2));
    assert_eq!(idx.rank0(&bv, 4), Some(2));
    assert_eq!(idx.rank0(&bv, 5), None);
}
source

pub unsafe fn select1(&self, bv: &BitVector, k: usize) -> Option<usize>

Searches the position of the k-th bit set, or None if self.num_ones() <= k.

Arguments
  • bv: Bit vector used in construction.
  • k: Select query.
Complexity
  • Logarithmic
Safety

bv must be the one used in construction.

Examples
use sucds::bit_vectors::{BitVector, rank9sel::inner::Rank9SelIndex};

let bv = BitVector::from_bits([true, false, false, true]);
let idx = Rank9SelIndex::new(&bv).select1_hints();

unsafe {
    assert_eq!(idx.select1(&bv, 0), Some(0));
    assert_eq!(idx.select1(&bv, 1), Some(3));
    assert_eq!(idx.select1(&bv, 2), None);
}
source

pub unsafe fn select0(&self, bv: &BitVector, k: usize) -> Option<usize>

Searches the position of the k-th bit unset, or None if self.num_zeros() <= k.

Arguments
  • bv: Bit vector used in construction.
  • k: Select query.
Complexity
  • Logarithmic
Safety

bv must be the one used in construction.

Examples
use sucds::bit_vectors::{BitVector, rank9sel::inner::Rank9SelIndex};

let bv = BitVector::from_bits([true, false, false, true]);
let idx = Rank9SelIndex::new(&bv).select0_hints();

unsafe {
    assert_eq!(idx.select0(&bv, 0), Some(1));
    assert_eq!(idx.select0(&bv, 1), Some(2));
    assert_eq!(idx.select0(&bv, 2), None);
}

Trait Implementations§

source§

impl Clone for Rank9SelIndex

source§

fn clone(&self) -> Rank9SelIndex

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Rank9SelIndex

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Rank9SelIndex

source§

fn default() -> Rank9SelIndex

Returns the “default value” for a type. Read more
source§

impl PartialEq for Rank9SelIndex

source§

fn eq(&self, other: &Rank9SelIndex) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serializable for Rank9SelIndex

source§

fn serialize_into<W: Write>(&self, writer: W) -> Result<usize>

Serializes the data structure into the writer, returning the number of serialized bytes. Read more
source§

fn deserialize_from<R: Read>(reader: R) -> Result<Self>

Deserializes the data structure from the reader. Read more
source§

fn size_in_bytes(&self) -> usize

Returns the number of bytes to serialize the data structure.
source§

fn size_of() -> Option<usize>

Returns the size of a primitive type in bytes (if the type is so).
source§

impl Eq for Rank9SelIndex

source§

impl StructuralEq for Rank9SelIndex

source§

impl StructuralPartialEq for Rank9SelIndex

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.