2 unstable releases
Uses old Rust 2015
0.2.0 | Mar 20, 2016 |
---|---|
0.1.0 | Jan 24, 2016 |
#47 in #priority-queue
16KB
330 lines
binomial-heap
A priority queue based on a binomial heap.
Documentation is available at https://apasel422.github.io/binomial-heap/binomial_heap.
To use binomial-heap
with Cargo, add this to Cargo.toml
:
[dependencies]
binomial_heap = "0.2"
and this to the crate root:
extern crate binomial_heap;
lib.rs
:
A priority queue based on a binomial heap.
See BinomialHeap
for details.