Scaffold IndexedQueue and IndexedBinaryHeap

This commit is contained in:
Michael Bradley 2025-01-11 22:38:32 +13:00
parent 64030bd349
commit fec9ccffc6
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8
3 changed files with 116 additions and 4 deletions

View file

@ -1,4 +1,8 @@
/// Data structures for the "indexed" min-queues, supporting priority updates and arbitrary removals, but no duplicates
mod binary_heap;
pub use binary_heap::IndexedBinaryHeap;
use super::{containers::Pair, pure::PureBacking};
/// A data structure usable for backing an "indexed" queue