Add stubs for other queues
This commit is contained in:
parent
6e91aef421
commit
6878652583
7 changed files with 38 additions and 5 deletions
|
@ -1,5 +1,6 @@
|
|||
/// Data structures for the "pure" min-queues, supporting duplicates but no arbitrary updates
|
||||
pub mod binary_heap;
|
||||
mod binary_heap;
|
||||
pub use binary_heap::BinaryHeap;
|
||||
|
||||
/// A data structure usable for backing a "pure" queue
|
||||
pub trait PureBacking<T: Ord + Send + Sync>: Send + Sync {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue