Add binary min-heap

This commit is contained in:
Michael Bradley 2025-01-04 00:15:27 +13:00
parent 28e780d274
commit df7536b82b
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8
2 changed files with 147 additions and 0 deletions

View file

@ -1,4 +1,5 @@
/// Data structures for the "pure" min-queues, supporting duplicates but no arbitrary updates
pub mod binary_heap;
/// A data structure usable for backing a "pure" queue
pub trait PureBacking<T: Ord> {