binary-heap-plus-rs

Build Status Build status

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.

Added muthods

BinaryHeap::new_xxx()

BinaryHeap::with_capacity_xxx()

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.

Changes

v0.2.0

v0.1.6

v0.1.5

v0.1.4

v0.1.3

v0.1.2

Thanks

References

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