16 releases (stable)

1.3.0 Dec 30, 2019
1.2.2 Dec 17, 2018
1.2.0 Jun 2, 2018
1.1.1 May 30, 2018
0.1.2 Jun 13, 2016

#222 in Data structures

Download history 15898/week @ 2024-01-10 19519/week @ 2024-01-17 16180/week @ 2024-01-24 14966/week @ 2024-01-31 13152/week @ 2024-02-07 11839/week @ 2024-02-14 13979/week @ 2024-02-21 14999/week @ 2024-02-28 15179/week @ 2024-03-06 14918/week @ 2024-03-13 16811/week @ 2024-03-20 15823/week @ 2024-03-27 17806/week @ 2024-04-03 18212/week @ 2024-04-10 20055/week @ 2024-04-17 14684/week @ 2024-04-24

74,552 downloads per month
Used in 54 crates (11 directly)

MIT/Apache

38KB
902 lines

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.

Dependencies

~180KB