binary-heap-plus-rs

Enhancement over Rust's std::collections::BinaryHeap.

This crate requires Rust 1.26 or later.

It is a prototype that implements the following variations in a backward-compatible way.

::new_xxx()

::with_capacity_xxx()

Future

In future, the trait Compare<T> might be replaced with FnMut(&T, &T) -> Ordering.

To do that, rustc needs to stabilize a few unstable features.

References

See the following discussions for the background: - 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