Crates.io | csheap |
lib.rs | csheap |
version | 0.1.12 |
source | src |
created_at | 2024-02-14 04:14:55.56531 |
updated_at | 2024-02-18 01:54:03.794625 |
description | A heap implementation over a vector |
homepage | |
repository | https://github.com/cstffx/csheap/ |
max_upload_size | |
id | 1139437 |
size | 11,037 |
Min and max heap implementation over a vector. This is a efficient implementation of the ADT priority queue.
// Create a new heap instance for u32 elements.
let mut heap = Heap::<u32>::new(HeapType::Max);
// Create a new heap instance from an u32 vector.
// Will take the ownership of the vector.
let mut heap = Heap::<u32>::from_vec(HeapType::Min, some_vector);
// To avoid taking the ownership of the vector you can,
// for example, clone the vector.
let mut heap = Heap::<u32>::from_vec(HeapType::Min, some_vector.clone());
There are two basic operations:
insert
: Insert an element.extract
: Remove and return the element in the root node.Heaps comes in two flavors: Min
and Max
.
Min
: extract
always take the min element.Max
: extract
always take the max element.// Create a heap that always return the max element
let mut heap = Heap::<u32>::new(HeapType::Max);
heap.insert(1u32);
heap.insert(2u32);
heap.extract(); // returns 2