Struct WaveletMatrix

Source
pub struct WaveletMatrix<T, const BIT_SIZE: usize> { /* private fields */ }
Expand description

Wavelet matrix

Implementations§

Source§

impl<T, const BIT_SIZE: usize> WaveletMatrix<T, BIT_SIZE>
where T: Shr<usize, Output = T> + Shl<usize, Output = T> + BitAnd<Output = T> + BitOrAssign + From<u8> + Eq + Ord + Copy,

Source

pub fn new(data: Vec<T>) -> Self

Tの列からWaveletMatrixを作る。

Source

pub fn access(&self, index: usize) -> T

index番目の値を得る。

Source

pub fn rank(&self, index: usize, value: T) -> usize

[0, index)に含まれるvalueの個数。

Source

pub fn count(&self, range: impl RangeBounds<usize>, value: T) -> usize

rangeに含まれるvalueの個数。

Source

pub fn select(&self, nth: usize, value: T) -> Option<usize>

nth(0-indexed)番目のvalueの位置。

Source

pub fn quantile(&self, range: impl RangeBounds<usize>, nth: usize) -> Option<T>

rangenth(0-indexed)番目に小さい値。

Source

pub fn maximum(&self, range: impl RangeBounds<usize>) -> Option<T>

rangeでの最大値

Source

pub fn minimum(&self, range: impl RangeBounds<usize>) -> Option<T>

rangeでの最小値

Source

pub fn next_value( &self, range: impl RangeBounds<usize> + Clone, lb: T, ) -> Option<T>

rangelb以上の最小値

Source

pub fn prev_value( &self, range: impl RangeBounds<usize> + Clone, ub: T, ) -> Option<T>

rangeub未満の最大値

Source

pub fn range_freq( &self, range: impl RangeBounds<usize> + Clone, lb: T, ub: T, ) -> usize

rangelb以上ub未満の値の個数

Trait Implementations§

Source§

impl<T: Clone, const BIT_SIZE: usize> Clone for WaveletMatrix<T, BIT_SIZE>

Source§

fn clone(&self) -> WaveletMatrix<T, BIT_SIZE>

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

Auto Trait Implementations§

§

impl<T, const BIT_SIZE: usize> Freeze for WaveletMatrix<T, BIT_SIZE>

§

impl<T, const BIT_SIZE: usize> RefUnwindSafe for WaveletMatrix<T, BIT_SIZE>
where T: RefUnwindSafe,

§

impl<T, const BIT_SIZE: usize> Send for WaveletMatrix<T, BIT_SIZE>
where T: Send,

§

impl<T, const BIT_SIZE: usize> Sync for WaveletMatrix<T, BIT_SIZE>
where T: Sync,

§

impl<T, const BIT_SIZE: usize> Unpin for WaveletMatrix<T, BIT_SIZE>
where T: Unpin,

§

impl<T, const BIT_SIZE: usize> UnwindSafe for WaveletMatrix<T, BIT_SIZE>
where T: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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 T
where 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 T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.