nostbeep
A no_std implementation of a binary heap. More specifically, a max heap.
Simple example
use MaxHeap;
let val1 = 17;
let val2 = -5;
let val3 = 100;
let mut my_heap = new;
assert_eq!;
my_heap.push;
my_heap.push;
my_heap.push;
my_heap.pop;
my_heap.pop;
assert_eq!;