Enhancement over Rust's std::collections::BinaryHeap
.
It supports the following features and still maintains backward compatibility. - Max heap - Min heap - Heap ordered by closure - Heap ordered by key generated by closure
You can change the line
use std::collections::BinaryHeap;
to like below.
use binary_heap_plus::*;
Your code will compile as before unless you use unstable APIs.
This crate requires Rust 1.26 or later.
BinaryHeap::new_xxx()
::new()
// creates a max heap::new_min()
// creates a min heap::new_by(f)
// creates a heap ordered by the given closure f
::new_by_key(g)
// creates a heap ordered by key generated by the given closure g
BinaryHeap::with_capacity_xxx()
::with_capacity(n)
// creates a max heap with capacity n
::with_capacity_min(n)
// creates a min heap with capacity n
::with_capacity_by(n, f)
// creates a heap with capacity n
, ordered by the given closure f
::with_capacity_by_key(n, g)
// creates a heap with capacity n
, ordered by key generated by the given closure g
BinaryHeap::from_vec()
Currently, the From<Vec<T>>
trait is implemented for max heap only.
If you add generic impl for other heaps, the existing code breaks, requires
slight modification such as type annotation.
To maintain good compatibility with std
version, ::from_vec()
method was added
for the same purpose.
Compare
trait from compare
crate instead of our own definition.
Most users should not be affected by this. TIP: External Compare<T>
impls needs to be updated to use Fn
instead of FnMut
.serde1
to serde
in order to comply with the guideline:
https://rust-lang-nursery.github.io/api-guidelines/interoperability.html#c-serdefrom_vec()
and from_vec_cmp()
.serde1
feature which adds Serialize/Deserializetrust
CI template v0.1.2serde1
.See the following discussions for the background of the crate: - [1] https://internals.rust-lang.org/t/pre-rfc-binaryheap-flexibility/7482 - https://users.rust-lang.org/t/binaryheap-flexibility-revisited-supporting-other-than-max-heap/17062 - https://users.rust-lang.org/t/binaryheap-flexibility/8766 - https://github.com/rust-lang/rust/issues/38886