BinaryHeapInner

Struct BinaryHeapInner 

Source
pub struct BinaryHeapInner<T, K, S: VecStorage<T> + ?Sized> { /* private fields */ }
Expand description

Base struct for BinaryHeap and BinaryHeapView, generic over the VecStorage.

In most cases you should use BinaryHeap or BinaryHeapView directly. Only use this struct if you want to write code that’s generic over both.

Implementations§

Source§

impl<T, K, const N: usize> BinaryHeapInner<T, K, VecStorageInner<[MaybeUninit<T>; N]>>

Source

pub const fn new() -> Self

Creates an empty BinaryHeap as a $K-heap.

use heapless::binary_heap::{BinaryHeap, Max};

// allocate the binary heap on the stack
let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
heap.push(4).unwrap();

// allocate the binary heap in a static variable
static mut HEAP: BinaryHeap<i32, Max, 8> = BinaryHeap::new();
Source§

impl<T, K, const N: usize> BinaryHeapInner<T, K, VecStorageInner<[MaybeUninit<T>; N]>>

Source

pub fn into_vec(self) -> Vec<T, N, usize>

Returns the underlying Vec<T,N>. Order is arbitrary and time is O(1).

Source§

impl<T, K, S: VecStorage<T>> BinaryHeapInner<T, K, S>

Source

pub fn as_view(&self) -> &BinaryHeapView<T, K>

Get a reference to the BinaryHeap, erasing the N const-generic.

Source

pub fn as_mut_view(&mut self) -> &mut BinaryHeapView<T, K>

Get a mutable reference to the BinaryHeap, erasing the N const-generic.

Source§

impl<T, K, S: VecStorage<T> + ?Sized> BinaryHeapInner<T, K, S>
where T: Ord, K: Kind,

Source

pub fn capacity(&self) -> usize

Returns the capacity of the binary heap.

Source

pub fn clear(&mut self)

Drops all items from the binary heap.

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
heap.push(1).unwrap();
heap.push(3).unwrap();

assert!(!heap.is_empty());

heap.clear();

assert!(heap.is_empty());
Source

pub fn len(&self) -> usize

Returns the length of the binary heap.

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
heap.push(1).unwrap();
heap.push(3).unwrap();

assert_eq!(heap.len(), 2);
Source

pub fn is_empty(&self) -> bool

Checks if the binary heap is empty.

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();

assert!(heap.is_empty());

heap.push(3).unwrap();
heap.push(5).unwrap();
heap.push(1).unwrap();

assert!(!heap.is_empty());
Source

pub fn is_full(&self) -> bool

Checks if the binary heap is full.

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 4> = BinaryHeap::new();

assert!(!heap.is_full());

heap.push(1).unwrap();
heap.push(2).unwrap();
heap.push(3).unwrap();
heap.push(4).unwrap();

assert!(heap.is_full());
Source

pub fn iter(&self) -> Iter<'_, T>

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

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
heap.push(1).unwrap();
heap.push(2).unwrap();
heap.push(3).unwrap();
heap.push(4).unwrap();

// Print 1, 2, 3, 4 in arbitrary order
for x in heap.iter() {
    println!("{}", x);
}
Source

pub fn iter_mut(&mut self) -> IterMut<'_, T>

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

WARNING Mutating the items in the binary heap can leave the heap in an inconsistent state.

Source

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

Returns the top (greatest if max-heap, smallest if min-heap) item in the binary heap, or None if it is empty.

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
assert_eq!(heap.peek(), None);

heap.push(1).unwrap();
heap.push(5).unwrap();
heap.push(2).unwrap();
assert_eq!(heap.peek(), Some(&5));
Source

pub fn peek_mut(&mut self) -> Option<PeekMutInner<'_, T, K, S>>

Returns a mutable reference to the greatest item in the binary heap, or None if it is empty.

Note: If the PeekMut value is leaked, the heap may be in an inconsistent state.

§Examples

Basic usage:

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
assert!(heap.peek_mut().is_none());

heap.push(1);
heap.push(5);
heap.push(2);
{
    let mut val = heap.peek_mut().unwrap();
    *val = 0;
}

assert_eq!(heap.peek(), Some(&2));
Source

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

Removes the top (greatest if max-heap, smallest if min-heap) item from the binary heap and returns it, or None if it is empty.

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
heap.push(1).unwrap();
heap.push(3).unwrap();

assert_eq!(heap.pop(), Some(3));
assert_eq!(heap.pop(), Some(1));
assert_eq!(heap.pop(), None);
Source

pub unsafe fn pop_unchecked(&mut self) -> T

Removes the top (greatest if max-heap, smallest if min-heap) item from the binary heap and returns it, without checking if the binary heap is empty.

§Safety

The binary heap must not be empty.

§Example
use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
heap.push(42)?;

// SAFETY: We just pushed a number onto the heap, so it cannot be empty.
let val = unsafe { heap.pop_unchecked() };
assert_eq!(val, 42);
Source

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

Pushes an item onto the binary heap.

use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();
heap.push(3).unwrap();
heap.push(5).unwrap();
heap.push(1).unwrap();

assert_eq!(heap.len(), 3);
assert_eq!(heap.peek(), Some(&5));
Source

pub unsafe fn push_unchecked(&mut self, item: T)

Pushes an item onto the binary heap without first checking if it’s full.

§Safety

The binary heap must not be full.

§Example
use heapless::binary_heap::{BinaryHeap, Max};

let mut heap: BinaryHeap<_, Max, 8> = BinaryHeap::new();

// SAFETY: We just created an empty heap of size 8, so it cannot be full.
unsafe { heap.push_unchecked(42) };
assert_eq!(heap.len(), 1);
assert_eq!(heap.peek(), Some(&42));

Trait Implementations§

Source§

impl<T, K, S> Debug for BinaryHeapInner<T, K, S>
where K: Kind, T: Ord + Debug, S: VecStorage<T> + ?Sized,

Source§

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

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

impl<'a, T, K, S> IntoIterator for &'a BinaryHeapInner<T, K, S>
where K: Kind, T: Ord, S: VecStorage<T> + ?Sized,

Source§

type Item = &'a T

The type of the elements being iterated over.
Source§

type IntoIter = Iter<'a, T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<T, K, S> Freeze for BinaryHeapInner<T, K, S>
where S: Freeze + ?Sized,

§

impl<T, K, S> RefUnwindSafe for BinaryHeapInner<T, K, S>

§

impl<T, K, S> Send for BinaryHeapInner<T, K, S>
where K: Send, S: Send + ?Sized, T: Send,

§

impl<T, K, S> Sync for BinaryHeapInner<T, K, S>
where K: Sync, S: Sync + ?Sized, T: Sync,

§

impl<T, K, S> Unpin for BinaryHeapInner<T, K, S>
where K: Unpin, S: Unpin + ?Sized, T: Unpin,

§

impl<T, K, S> UnwindSafe for BinaryHeapInner<T, K, S>
where K: UnwindSafe, S: UnwindSafe + ?Sized, 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, 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.