Scaffold IndexedQueue and IndexedBinaryHeap
This commit is contained in:
parent
64030bd349
commit
fec9ccffc6
3 changed files with 116 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue