Struct ic_stable_structures::min_heap::MinHeap

source ·
pub struct MinHeap<T: Storable + PartialOrd, M: Memory>(/* private fields */);
Expand description

An implementation of the binary min heap.

Implementations§

source§

impl<T, M> MinHeap<T, M>
where T: Storable + PartialOrd, M: Memory,

source

pub fn new(memory: M) -> Result<Self, GrowFailed>

Creates a new empty heap in the specified memory, overwriting any data structures the memory might have contained.

Complexity: O(1)

source

pub fn init(memory: M) -> Result<Self, InitError>

Initializes a heap in the specified memory.

Complexity: O(1)

PRECONDITION: the memory is either empty or contains a valid stable heap.

source

pub fn len(&self) -> u64

Returns the number of items in the heap.

Complexity: O(1)

source

pub fn is_empty(&self) -> bool

Returns true if the heap is empty.

Complexity: O(1)

source

pub fn push(&mut self, item: &T) -> Result<(), GrowFailed>

Pushes an item onto the heap.

Complexity: O(log(self.len()))

source

pub fn pop(&mut self) -> Option<T>

Removes the smallest item from the heap and returns it. Returns None if the heap is empty.

Complexity: O(log(self.len()))

source

pub fn peek(&self) -> Option<T>

Returns the smallest item in the heap. Returns None if the heap is empty.

Complexity: O(1)

source

pub fn iter(&self) -> impl Iterator<Item = T> + '_

Returns an iterator visiting all values in the underlying vector, in arbitrary order.

source

pub fn into_memory(self) -> M

Returns the underlying memory instance.

Trait Implementations§

source§

impl<T, M> Debug for MinHeap<T, M>
where T: Storable + PartialOrd + Debug, M: Memory,

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, M> Freeze for MinHeap<T, M>
where M: Freeze,

§

impl<T, M> RefUnwindSafe for MinHeap<T, M>

§

impl<T, M> Send for MinHeap<T, M>
where M: Send, T: Send,

§

impl<T, M> Sync for MinHeap<T, M>
where M: Sync, T: Sync,

§

impl<T, M> Unpin for MinHeap<T, M>
where M: Unpin, T: Unpin,

§

impl<T, M> UnwindSafe for MinHeap<T, M>
where M: UnwindSafe, 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> 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, U> TryFrom<U> for T
where 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 T
where 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.