jch-13 / min-max-heap-rs

A double-ended priority queue

Home Page:http://docs.rs/min-max-heap/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

min-max-heap: a double-ended priority queue

Build Status Crates.io License: MIT License: Apache 2.0

A min-max-heap is like a binary heap, but it allows extracting both the minimum and maximum value efficiently. In particular, finding either the minimum or maximum element is O(1). A removal of either extremum, or an insertion, is O(log n).

Usage

It’s on crates.io, so add this to your Cargo.toml:

[dependencies]
min-max-heap = "1.3.0"

This crate supports Rust version 1.32.0 and later.

References

My reference for a min-max heap is here. Much of this code is also based on BinaryHeap from the standard library.

About

A double-ended priority queue

http://docs.rs/min-max-heap/

License:Apache License 2.0


Languages

Language:Rust 100.0%