Deprecate the rev_iter pattern in all places where a DoubleEndedIterator is provided (everywhere but treemap)
This commit deprecates rev_iter, mut_rev_iter, move_rev_iter everywhere (except treemap) and also
deprecates related functions like rsplit, rev_components, and rev_str_components. In every case,
these functions can be replaced with the non-reversed form followed by a call to .rev(). To make this
more concrete, a translation table for all functional changes necessary follows:
* container.rev_iter() -> container.iter().rev()
* container.mut_rev_iter() -> container.mut_iter().rev()
* container.move_rev_iter() -> container.move_iter().rev()
* sliceorstr.rsplit(sep) -> sliceorstr.split(sep).rev()
* path.rev_components() -> path.components().rev()
* path.rev_str_components() -> path.str_components().rev()
In terms of the type system, this change also deprecates any specialized reversed iterator types (except
in treemap), opting instead to use Rev directly if any type annotations are needed. However, since
methods directly returning reversed iterators are now discouraged, the need for such annotations should
be small. However, in those cases, the general pattern for conversion is to take whatever follows Rev in
the original reversed name and surround it with Rev<>:
* RevComponents<'a> -> Rev<Components<'a>>
* RevStrComponents<'a> -> Rev<StrComponents<'a>>
* RevItems<'a, T> -> Rev<Items<'a, T>>
* etc.
The reasoning behind this change is that it makes the standard API much simpler without reducing readability,
performance, or power. The presence of functions such as rev_iter adds more boilerplate code to libraries
(all of which simply call .iter().rev()), clutters up the documentation, and only helps code by saving two
characters. Additionally, the numerous type synonyms that were used to make the type signatures look nice
like RevItems add even more boilerplate and clutter up the docs even more. With this change, all that cruft
goes away.
[breaking-change]
2014-04-20 23:59:12 -05:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-01-18 01:28:42 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2012-12-09 19:02:33 -06:00
|
|
|
|
2014-07-21 08:20:57 -05:00
|
|
|
//! A priority queue implemented with a binary heap.
|
|
|
|
//!
|
2014-12-01 20:12:48 -06:00
|
|
|
//! Insertion and popping the largest element have `O(log n)` time complexity. Checking the largest
|
2014-12-22 06:13:09 -06:00
|
|
|
//! element is `O(1)`. Converting a vector to a binary heap can be done in-place, and has `O(n)`
|
|
|
|
//! complexity. A binary heap can also be converted to a sorted vector in-place, allowing it to
|
2014-08-30 16:11:22 -05:00
|
|
|
//! be used for an `O(n log n)` in-place heapsort.
|
|
|
|
//!
|
2014-12-08 23:28:07 -06:00
|
|
|
//! # Examples
|
2014-07-21 08:20:57 -05:00
|
|
|
//!
|
2014-12-22 06:13:09 -06:00
|
|
|
//! This is a larger example that implements [Dijkstra's algorithm][dijkstra]
|
2014-07-21 08:20:57 -05:00
|
|
|
//! to solve the [shortest path problem][sssp] on a [directed graph][dir_graph].
|
2014-12-22 06:13:09 -06:00
|
|
|
//! It shows how to use `BinaryHeap` with custom types.
|
2014-07-21 08:20:57 -05:00
|
|
|
//!
|
|
|
|
//! [dijkstra]: http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm
|
|
|
|
//! [sssp]: http://en.wikipedia.org/wiki/Shortest_path_problem
|
|
|
|
//! [dir_graph]: http://en.wikipedia.org/wiki/Directed_graph
|
|
|
|
//!
|
|
|
|
//! ```
|
2014-12-22 11:04:23 -06:00
|
|
|
//! use std::cmp::Ordering;
|
2014-10-30 20:25:08 -05:00
|
|
|
//! use std::collections::BinaryHeap;
|
2014-07-21 08:20:57 -05:00
|
|
|
//! use std::uint;
|
|
|
|
//!
|
2015-01-03 21:54:18 -06:00
|
|
|
//! #[derive(Copy, Eq, PartialEq)]
|
2014-07-21 08:20:57 -05:00
|
|
|
//! struct State {
|
|
|
|
//! cost: uint,
|
2014-12-22 06:13:09 -06:00
|
|
|
//! position: uint,
|
2014-07-21 08:20:57 -05:00
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! // The priority queue depends on `Ord`.
|
|
|
|
//! // Explicitly implement the trait so the queue becomes a min-heap
|
|
|
|
//! // instead of a max-heap.
|
|
|
|
//! impl Ord for State {
|
|
|
|
//! fn cmp(&self, other: &State) -> Ordering {
|
|
|
|
//! // Notice that the we flip the ordering here
|
|
|
|
//! other.cost.cmp(&self.cost)
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! // `PartialOrd` needs to be implemented as well.
|
|
|
|
//! impl PartialOrd for State {
|
|
|
|
//! fn partial_cmp(&self, other: &State) -> Option<Ordering> {
|
|
|
|
//! Some(self.cmp(other))
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! // Each node is represented as an `uint`, for a shorter implementation.
|
|
|
|
//! struct Edge {
|
|
|
|
//! node: uint,
|
2014-12-22 06:13:09 -06:00
|
|
|
//! cost: uint,
|
2014-07-21 08:20:57 -05:00
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! // Dijkstra's shortest path algorithm.
|
|
|
|
//!
|
|
|
|
//! // Start at `start` and use `dist` to track the current shortest distance
|
2014-12-22 06:13:09 -06:00
|
|
|
//! // to each node. This implementation isn't memory-efficient as it may leave duplicate
|
2014-07-21 08:20:57 -05:00
|
|
|
//! // nodes in the queue. It also uses `uint::MAX` as a sentinel value,
|
|
|
|
//! // for a simpler implementation.
|
|
|
|
//! fn shortest_path(adj_list: &Vec<Vec<Edge>>, start: uint, goal: uint) -> uint {
|
|
|
|
//! // dist[node] = current shortest distance from `start` to `node`
|
2014-12-30 12:51:18 -06:00
|
|
|
//! let mut dist: Vec<_> = range(0, adj_list.len()).map(|_| uint::MAX).collect();
|
2014-07-21 08:20:57 -05:00
|
|
|
//!
|
2014-11-22 01:01:38 -06:00
|
|
|
//! let mut heap = BinaryHeap::new();
|
2014-07-21 08:20:57 -05:00
|
|
|
//!
|
|
|
|
//! // We're at `start`, with a zero cost
|
2014-12-22 06:13:09 -06:00
|
|
|
//! dist[start] = 0;
|
|
|
|
//! heap.push(State { cost: 0, position: start });
|
2014-07-21 08:20:57 -05:00
|
|
|
//!
|
|
|
|
//! // Examine the frontier with lower cost nodes first (min-heap)
|
2014-12-22 06:13:09 -06:00
|
|
|
//! while let Some(State { cost, position }) = heap.pop() {
|
2014-07-21 08:20:57 -05:00
|
|
|
//! // Alternatively we could have continued to find all shortest paths
|
2014-12-22 06:13:09 -06:00
|
|
|
//! if position == goal { return cost; }
|
2014-07-21 08:20:57 -05:00
|
|
|
//!
|
|
|
|
//! // Important as we may have already found a better way
|
2014-12-22 06:13:09 -06:00
|
|
|
//! if cost > dist[position] { continue; }
|
2014-07-21 08:20:57 -05:00
|
|
|
//!
|
|
|
|
//! // For each node we can reach, see if we can find a way with
|
|
|
|
//! // a lower cost going through this node
|
|
|
|
//! for edge in adj_list[position].iter() {
|
|
|
|
//! let next = State { cost: cost + edge.cost, position: edge.node };
|
|
|
|
//!
|
|
|
|
//! // If so, add it to the frontier and continue
|
|
|
|
//! if next.cost < dist[next.position] {
|
2014-11-22 01:01:38 -06:00
|
|
|
//! heap.push(next);
|
2014-07-21 08:20:57 -05:00
|
|
|
//! // Relaxation, we have now found a better way
|
2014-10-23 10:42:21 -05:00
|
|
|
//! dist[next.position] = next.cost;
|
2014-07-21 08:20:57 -05:00
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! // Goal not reachable
|
|
|
|
//! uint::MAX
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! // This is the directed graph we're going to use.
|
|
|
|
//! // The node numbers correspond to the different states,
|
2014-12-22 06:13:09 -06:00
|
|
|
//! // and the edge weights symbolize the cost of moving
|
2014-07-21 08:20:57 -05:00
|
|
|
//! // from one node to another.
|
|
|
|
//! // Note that the edges are one-way.
|
|
|
|
//! //
|
|
|
|
//! // 7
|
|
|
|
//! // +-----------------+
|
|
|
|
//! // | |
|
|
|
|
//! // v 1 2 |
|
|
|
|
//! // 0 -----> 1 -----> 3 ---> 4
|
|
|
|
//! // | ^ ^ ^
|
|
|
|
//! // | | 1 | |
|
|
|
|
//! // | | | 3 | 1
|
|
|
|
//! // +------> 2 -------+ |
|
|
|
|
//! // 10 | |
|
|
|
|
//! // +---------------+
|
|
|
|
//! //
|
2014-08-01 18:40:21 -05:00
|
|
|
//! // The graph is represented as an adjacency list where each index,
|
2014-07-21 08:20:57 -05:00
|
|
|
//! // corresponding to a node value, has a list of outgoing edges.
|
2014-12-22 06:13:09 -06:00
|
|
|
//! // Chosen for its efficiency.
|
2014-07-21 08:20:57 -05:00
|
|
|
//! let graph = vec![
|
|
|
|
//! // Node 0
|
|
|
|
//! vec![Edge { node: 2, cost: 10 },
|
|
|
|
//! Edge { node: 1, cost: 1 }],
|
|
|
|
//! // Node 1
|
|
|
|
//! vec![Edge { node: 3, cost: 2 }],
|
|
|
|
//! // Node 2
|
|
|
|
//! vec![Edge { node: 1, cost: 1 },
|
|
|
|
//! Edge { node: 3, cost: 3 },
|
|
|
|
//! Edge { node: 4, cost: 1 }],
|
|
|
|
//! // Node 3
|
|
|
|
//! vec![Edge { node: 0, cost: 7 },
|
|
|
|
//! Edge { node: 4, cost: 2 }],
|
|
|
|
//! // Node 4
|
|
|
|
//! vec![]];
|
|
|
|
//!
|
|
|
|
//! assert_eq!(shortest_path(&graph, 0, 1), 1);
|
|
|
|
//! assert_eq!(shortest_path(&graph, 0, 3), 3);
|
|
|
|
//! assert_eq!(shortest_path(&graph, 3, 0), 7);
|
|
|
|
//! assert_eq!(shortest_path(&graph, 0, 4), 5);
|
|
|
|
//! assert_eq!(shortest_path(&graph, 4, 0), uint::MAX);
|
|
|
|
//! }
|
|
|
|
//! ```
|
2012-12-16 21:53:24 -06:00
|
|
|
|
2014-10-27 17:37:07 -05:00
|
|
|
#![allow(missing_docs)]
|
2015-01-12 20:40:19 -06:00
|
|
|
#![stable(feature = "grandfathered", since = "1.0.0")]
|
2013-05-31 17:17:22 -05:00
|
|
|
|
std: Recreate a `collections` module
As with the previous commit with `librand`, this commit shuffles around some
`collections` code. The new state of the world is similar to that of librand:
* The libcollections crate now only depends on libcore and liballoc.
* The standard library has a new module, `std::collections`. All functionality
of libcollections is reexported through this module.
I would like to stress that this change is purely cosmetic. There are very few
alterations to these primitives.
There are a number of notable points about the new organization:
* std::{str, slice, string, vec} all moved to libcollections. There is no reason
that these primitives shouldn't be necessarily usable in a freestanding
context that has allocation. These are all reexported in their usual places in
the standard library.
* The `hashmap`, and transitively the `lru_cache`, modules no longer reside in
`libcollections`, but rather in libstd. The reason for this is because the
`HashMap::new` contructor requires access to the OSRng for initially seeding
the hash map. Beyond this requirement, there is no reason that the hashmap
could not move to libcollections.
I do, however, have a plan to move the hash map to the collections module. The
`HashMap::new` function could be altered to require that the `H` hasher
parameter ascribe to the `Default` trait, allowing the entire `hashmap` module
to live in libcollections. The key idea would be that the default hasher would
be different in libstd. Something along the lines of:
// src/libstd/collections/mod.rs
pub type HashMap<K, V, H = RandomizedSipHasher> =
core_collections::HashMap<K, V, H>;
This is not possible today because you cannot invoke static methods through
type aliases. If we modified the compiler, however, to allow invocation of
static methods through type aliases, then this type definition would
essentially be switching the default hasher from `SipHasher` in libcollections
to a libstd-defined `RandomizedSipHasher` type. This type's `Default`
implementation would randomly seed the `SipHasher` instance, and otherwise
perform the same as `SipHasher`.
This future state doesn't seem incredibly far off, but until that time comes,
the hashmap module will live in libstd to not compromise on functionality.
* In preparation for the hashmap moving to libcollections, the `hash` module has
moved from libstd to libcollections. A previously snapshotted commit enables a
distinct `Writer` trait to live in the `hash` module which `Hash`
implementations are now parameterized over.
Due to using a custom trait, the `SipHasher` implementation has lost its
specialized methods for writing integers. These can be re-added
backwards-compatibly in the future via default methods if necessary, but the
FNV hashing should satisfy much of the need for speedier hashing.
A list of breaking changes:
* HashMap::{get, get_mut} no longer fails with the key formatted into the error
message with `{:?}`, instead, a generic message is printed. With backtraces,
it should still be not-too-hard to track down errors.
* The HashMap, HashSet, and LruCache types are now available through
std::collections instead of the collections crate.
* Manual implementations of hash should be parameterized over `hash::Writer`
instead of just `Writer`.
[breaking-change]
2014-05-29 20:50:12 -05:00
|
|
|
use core::prelude::*;
|
|
|
|
|
2014-06-09 02:30:04 -05:00
|
|
|
use core::default::Default;
|
2014-12-22 11:04:23 -06:00
|
|
|
use core::iter::FromIterator;
|
2014-05-29 21:03:06 -05:00
|
|
|
use core::mem::{zeroed, replace, swap};
|
|
|
|
use core::ptr;
|
std: Recreate a `collections` module
As with the previous commit with `librand`, this commit shuffles around some
`collections` code. The new state of the world is similar to that of librand:
* The libcollections crate now only depends on libcore and liballoc.
* The standard library has a new module, `std::collections`. All functionality
of libcollections is reexported through this module.
I would like to stress that this change is purely cosmetic. There are very few
alterations to these primitives.
There are a number of notable points about the new organization:
* std::{str, slice, string, vec} all moved to libcollections. There is no reason
that these primitives shouldn't be necessarily usable in a freestanding
context that has allocation. These are all reexported in their usual places in
the standard library.
* The `hashmap`, and transitively the `lru_cache`, modules no longer reside in
`libcollections`, but rather in libstd. The reason for this is because the
`HashMap::new` contructor requires access to the OSRng for initially seeding
the hash map. Beyond this requirement, there is no reason that the hashmap
could not move to libcollections.
I do, however, have a plan to move the hash map to the collections module. The
`HashMap::new` function could be altered to require that the `H` hasher
parameter ascribe to the `Default` trait, allowing the entire `hashmap` module
to live in libcollections. The key idea would be that the default hasher would
be different in libstd. Something along the lines of:
// src/libstd/collections/mod.rs
pub type HashMap<K, V, H = RandomizedSipHasher> =
core_collections::HashMap<K, V, H>;
This is not possible today because you cannot invoke static methods through
type aliases. If we modified the compiler, however, to allow invocation of
static methods through type aliases, then this type definition would
essentially be switching the default hasher from `SipHasher` in libcollections
to a libstd-defined `RandomizedSipHasher` type. This type's `Default`
implementation would randomly seed the `SipHasher` instance, and otherwise
perform the same as `SipHasher`.
This future state doesn't seem incredibly far off, but until that time comes,
the hashmap module will live in libstd to not compromise on functionality.
* In preparation for the hashmap moving to libcollections, the `hash` module has
moved from libstd to libcollections. A previously snapshotted commit enables a
distinct `Writer` trait to live in the `hash` module which `Hash`
implementations are now parameterized over.
Due to using a custom trait, the `SipHasher` implementation has lost its
specialized methods for writing integers. These can be re-added
backwards-compatibly in the future via default methods if necessary, but the
FNV hashing should satisfy much of the need for speedier hashing.
A list of breaking changes:
* HashMap::{get, get_mut} no longer fails with the key formatted into the error
message with `{:?}`, instead, a generic message is printed. With backtraces,
it should still be not-too-hard to track down errors.
* The HashMap, HashSet, and LruCache types are now available through
std::collections instead of the collections crate.
* Manual implementations of hash should be parameterized over `hash::Writer`
instead of just `Writer`.
[breaking-change]
2014-05-29 20:50:12 -05:00
|
|
|
|
|
|
|
use slice;
|
2015-01-03 21:42:21 -06:00
|
|
|
use vec::{self, Vec};
|
2014-11-06 11:24:47 -06:00
|
|
|
|
2014-07-21 07:39:28 -05:00
|
|
|
/// A priority queue implemented with a binary heap.
|
|
|
|
///
|
|
|
|
/// This will be a max-heap.
|
2015-01-03 21:54:18 -06:00
|
|
|
#[derive(Clone)]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-10-30 20:25:08 -05:00
|
|
|
pub struct BinaryHeap<T> {
|
2014-04-05 00:45:42 -05:00
|
|
|
data: Vec<T>,
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-10-30 20:25:08 -05:00
|
|
|
impl<T: Ord> Default for BinaryHeap<T> {
|
2014-06-09 02:30:04 -05:00
|
|
|
#[inline]
|
2014-10-30 20:25:08 -05:00
|
|
|
fn default() -> BinaryHeap<T> { BinaryHeap::new() }
|
2014-06-09 02:30:04 -05:00
|
|
|
}
|
|
|
|
|
2014-10-30 20:25:08 -05:00
|
|
|
impl<T: Ord> BinaryHeap<T> {
|
|
|
|
/// Creates an empty `BinaryHeap` as a max-heap.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-12-22 06:13:09 -06:00
|
|
|
/// let mut heap = BinaryHeap::new();
|
|
|
|
/// heap.push(4u);
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-22 06:13:09 -06:00
|
|
|
pub fn new() -> BinaryHeap<T> { BinaryHeap { data: vec![] } }
|
2014-07-21 04:35:49 -05:00
|
|
|
|
2014-10-30 20:25:08 -05:00
|
|
|
/// Creates an empty `BinaryHeap` with a specific capacity.
|
2014-07-21 07:39:28 -05:00
|
|
|
/// This preallocates enough memory for `capacity` elements,
|
2014-10-30 20:25:08 -05:00
|
|
|
/// so that the `BinaryHeap` does not have to be reallocated
|
2014-07-21 07:39:28 -05:00
|
|
|
/// until it contains at least that many values.
|
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-12-22 06:13:09 -06:00
|
|
|
/// let mut heap = BinaryHeap::with_capacity(10);
|
|
|
|
/// heap.push(4u);
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-10-30 20:25:08 -05:00
|
|
|
pub fn with_capacity(capacity: uint) -> BinaryHeap<T> {
|
|
|
|
BinaryHeap { data: Vec::with_capacity(capacity) }
|
2014-07-21 04:35:49 -05:00
|
|
|
}
|
|
|
|
|
2014-10-30 20:25:08 -05:00
|
|
|
/// Creates a `BinaryHeap` from a vector. This is sometimes called
|
2014-07-21 07:39:28 -05:00
|
|
|
/// `heapifying` the vector.
|
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2015-01-05 21:08:37 -06:00
|
|
|
/// let heap = BinaryHeap::from_vec(vec![9i, 1, 2, 7, 3, 2]);
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2014-12-22 06:13:09 -06:00
|
|
|
pub fn from_vec(vec: Vec<T>) -> BinaryHeap<T> {
|
|
|
|
let mut heap = BinaryHeap { data: vec };
|
|
|
|
let mut n = heap.len() / 2;
|
2014-07-21 04:35:49 -05:00
|
|
|
while n > 0 {
|
|
|
|
n -= 1;
|
2014-12-22 06:13:09 -06:00
|
|
|
heap.sift_down(n);
|
2014-07-21 04:35:49 -05:00
|
|
|
}
|
2014-12-22 06:13:09 -06:00
|
|
|
heap
|
2014-07-21 04:35:49 -05:00
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Returns an iterator visiting all values in the underlying vector, in
|
2013-06-26 05:19:21 -05:00
|
|
|
/// arbitrary order.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2015-01-05 21:08:37 -06:00
|
|
|
/// let heap = BinaryHeap::from_vec(vec![1i, 2, 3, 4]);
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// // Print 1, 2, 3, 4 in arbitrary order
|
2014-11-22 01:01:38 -06:00
|
|
|
/// for x in heap.iter() {
|
2014-07-21 07:39:28 -05:00
|
|
|
/// println!("{}", x);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-19 14:52:10 -06:00
|
|
|
pub fn iter(&self) -> Iter<T> {
|
2014-12-20 08:28:20 -06:00
|
|
|
Iter { iter: self.data.iter() }
|
2013-06-26 05:19:21 -05:00
|
|
|
}
|
2013-06-23 16:57:39 -05:00
|
|
|
|
2014-11-23 00:31:40 -06:00
|
|
|
/// Creates a consuming iterator, that is, one that moves each value out of
|
2014-12-22 06:13:09 -06:00
|
|
|
/// the binary heap in arbitrary order. The binary heap cannot be used
|
2014-11-23 00:31:40 -06:00
|
|
|
/// after calling this.
|
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-11-23 00:31:40 -06:00
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::collections::BinaryHeap;
|
2015-01-05 21:08:37 -06:00
|
|
|
/// let heap = BinaryHeap::from_vec(vec![1i, 2, 3, 4]);
|
2014-11-23 00:31:40 -06:00
|
|
|
///
|
|
|
|
/// // Print 1, 2, 3, 4 in arbitrary order
|
2014-12-22 06:13:09 -06:00
|
|
|
/// for x in heap.into_iter() {
|
2014-11-23 00:31:40 -06:00
|
|
|
/// // x has type int, not &int
|
|
|
|
/// println!("{}", x);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-19 14:52:10 -06:00
|
|
|
pub fn into_iter(self) -> IntoIter<T> {
|
|
|
|
IntoIter { iter: self.data.into_iter() }
|
2014-11-23 00:31:40 -06:00
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Returns the greatest item in the binary heap, or `None` if it is empty.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-11-22 01:01:38 -06:00
|
|
|
/// let mut heap = BinaryHeap::new();
|
2014-12-19 17:53:40 -06:00
|
|
|
/// assert_eq!(heap.peek(), None);
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2015-01-05 21:08:37 -06:00
|
|
|
/// heap.push(1i);
|
2014-12-22 06:13:09 -06:00
|
|
|
/// heap.push(5);
|
|
|
|
/// heap.push(2);
|
|
|
|
/// assert_eq!(heap.peek(), Some(&5));
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-19 17:53:40 -06:00
|
|
|
pub fn peek(&self) -> Option<&T> {
|
2014-12-17 20:16:18 -06:00
|
|
|
self.data.get(0)
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Returns the number of elements the binary heap can hold without reallocating.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-12-22 06:13:09 -06:00
|
|
|
/// let mut heap = BinaryHeap::with_capacity(100);
|
|
|
|
/// assert!(heap.capacity() >= 100);
|
|
|
|
/// heap.push(4u);
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2013-06-27 09:40:47 -05:00
|
|
|
pub fn capacity(&self) -> uint { self.data.capacity() }
|
2012-12-09 19:02:33 -06:00
|
|
|
|
2014-11-06 11:24:47 -06:00
|
|
|
/// Reserves the minimum capacity for exactly `additional` more elements to be inserted in the
|
|
|
|
/// given `BinaryHeap`. Does nothing if the capacity is already sufficient.
|
|
|
|
///
|
|
|
|
/// Note that the allocator may give the collection more space than it requests. Therefore
|
|
|
|
/// capacity can not be relied upon to be precisely minimal. Prefer `reserve` if future
|
|
|
|
/// insertions are expected.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// Panics if the new capacity overflows `uint`.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-12-22 06:13:09 -06:00
|
|
|
/// let mut heap = BinaryHeap::new();
|
|
|
|
/// heap.reserve_exact(100);
|
|
|
|
/// assert!(heap.capacity() >= 100);
|
|
|
|
/// heap.push(4u);
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-22 06:13:09 -06:00
|
|
|
pub fn reserve_exact(&mut self, additional: uint) {
|
|
|
|
self.data.reserve_exact(additional);
|
|
|
|
}
|
2012-12-09 19:02:33 -06:00
|
|
|
|
2014-11-06 11:24:47 -06:00
|
|
|
/// Reserves capacity for at least `additional` more elements to be inserted in the
|
|
|
|
/// `BinaryHeap`. The collection may reserve more space to avoid frequent reallocations.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// Panics if the new capacity overflows `uint`.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-12-22 06:13:09 -06:00
|
|
|
/// let mut heap = BinaryHeap::new();
|
|
|
|
/// heap.reserve(100);
|
|
|
|
/// assert!(heap.capacity() >= 100);
|
|
|
|
/// heap.push(4u);
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-11-06 11:24:47 -06:00
|
|
|
pub fn reserve(&mut self, additional: uint) {
|
2014-12-22 06:13:09 -06:00
|
|
|
self.data.reserve(additional);
|
2014-11-06 11:24:47 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Discards as much additional capacity as possible.
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-11-06 11:24:47 -06:00
|
|
|
pub fn shrink_to_fit(&mut self) {
|
2014-12-22 06:13:09 -06:00
|
|
|
self.data.shrink_to_fit();
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Removes the greatest item from the binary heap and returns it, or `None` if it
|
2014-08-04 05:48:39 -05:00
|
|
|
/// is empty.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2015-01-05 21:08:37 -06:00
|
|
|
/// let mut heap = BinaryHeap::from_vec(vec![1i, 3]);
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-22 06:13:09 -06:00
|
|
|
/// assert_eq!(heap.pop(), Some(3));
|
|
|
|
/// assert_eq!(heap.pop(), Some(1));
|
2014-11-22 01:01:38 -06:00
|
|
|
/// assert_eq!(heap.pop(), None);
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-05-18 17:54:19 -05:00
|
|
|
pub fn pop(&mut self) -> Option<T> {
|
2014-12-22 06:13:09 -06:00
|
|
|
self.data.pop().map(|mut item| {
|
|
|
|
if !self.is_empty() {
|
|
|
|
swap(&mut item, &mut self.data[0]);
|
|
|
|
self.sift_down(0);
|
2014-05-18 17:54:19 -05:00
|
|
|
}
|
2014-12-22 06:13:09 -06:00
|
|
|
item
|
|
|
|
})
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Pushes an item onto the binary heap.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-11-22 01:01:38 -06:00
|
|
|
/// let mut heap = BinaryHeap::new();
|
2015-01-05 21:08:37 -06:00
|
|
|
/// heap.push(3i);
|
2014-12-22 06:13:09 -06:00
|
|
|
/// heap.push(5);
|
|
|
|
/// heap.push(1);
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-11-22 01:01:38 -06:00
|
|
|
/// assert_eq!(heap.len(), 3);
|
2014-12-22 06:13:09 -06:00
|
|
|
/// assert_eq!(heap.peek(), Some(&5));
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn push(&mut self, item: T) {
|
2014-12-17 20:16:18 -06:00
|
|
|
let old_len = self.len();
|
2012-12-09 19:02:33 -06:00
|
|
|
self.data.push(item);
|
2014-12-22 06:13:09 -06:00
|
|
|
self.sift_up(0, old_len);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Pushes an item onto the binary heap, then pops the greatest item off the queue in
|
2014-08-04 05:48:39 -05:00
|
|
|
/// an optimized fashion.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-11-22 01:01:38 -06:00
|
|
|
/// let mut heap = BinaryHeap::new();
|
2015-01-05 21:08:37 -06:00
|
|
|
/// heap.push(1i);
|
2014-12-22 06:13:09 -06:00
|
|
|
/// heap.push(5);
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-22 06:13:09 -06:00
|
|
|
/// assert_eq!(heap.push_pop(3), 5);
|
|
|
|
/// assert_eq!(heap.push_pop(9), 9);
|
2014-11-22 01:01:38 -06:00
|
|
|
/// assert_eq!(heap.len(), 2);
|
2014-12-22 06:13:09 -06:00
|
|
|
/// assert_eq!(heap.peek(), Some(&3));
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn push_pop(&mut self, mut item: T) -> T {
|
2014-12-17 20:16:18 -06:00
|
|
|
match self.data.get_mut(0) {
|
|
|
|
None => return item,
|
|
|
|
Some(top) => if *top > item {
|
|
|
|
swap(&mut item, top);
|
|
|
|
} else {
|
|
|
|
return item;
|
|
|
|
},
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
2014-12-17 20:16:18 -06:00
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
self.sift_down(0);
|
2012-12-09 19:02:33 -06:00
|
|
|
item
|
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Pops the greatest item off the binary heap, then pushes an item onto the queue in
|
|
|
|
/// an optimized fashion. The push is done regardless of whether the binary heap
|
2014-08-04 05:48:39 -05:00
|
|
|
/// was empty.
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-11-22 01:01:38 -06:00
|
|
|
/// let mut heap = BinaryHeap::new();
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2015-01-05 21:08:37 -06:00
|
|
|
/// assert_eq!(heap.replace(1i), None);
|
2014-12-22 06:13:09 -06:00
|
|
|
/// assert_eq!(heap.replace(3), Some(1));
|
2014-11-22 01:01:38 -06:00
|
|
|
/// assert_eq!(heap.len(), 1);
|
2014-12-22 06:13:09 -06:00
|
|
|
/// assert_eq!(heap.peek(), Some(&3));
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2014-05-18 17:54:19 -05:00
|
|
|
pub fn replace(&mut self, mut item: T) -> Option<T> {
|
|
|
|
if !self.is_empty() {
|
2014-10-23 10:42:21 -05:00
|
|
|
swap(&mut item, &mut self.data[0]);
|
2014-12-22 06:13:09 -06:00
|
|
|
self.sift_down(0);
|
2014-05-18 17:54:19 -05:00
|
|
|
Some(item)
|
|
|
|
} else {
|
|
|
|
self.push(item);
|
|
|
|
None
|
|
|
|
}
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2014-10-30 20:25:08 -05:00
|
|
|
/// Consumes the `BinaryHeap` and returns the underlying vector
|
2014-07-21 07:39:28 -05:00
|
|
|
/// in arbitrary order.
|
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2015-01-05 21:08:37 -06:00
|
|
|
/// let heap = BinaryHeap::from_vec(vec![1i, 2, 3, 4, 5, 6, 7]);
|
2014-11-22 01:01:38 -06:00
|
|
|
/// let vec = heap.into_vec();
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// // Will print in some order
|
|
|
|
/// for x in vec.iter() {
|
|
|
|
/// println!("{}", x);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2014-12-17 20:16:18 -06:00
|
|
|
pub fn into_vec(self) -> Vec<T> { self.data }
|
2012-12-10 14:36:01 -06:00
|
|
|
|
2014-10-30 20:25:08 -05:00
|
|
|
/// Consumes the `BinaryHeap` and returns a vector in sorted
|
2014-07-21 07:39:28 -05:00
|
|
|
/// (ascending) order.
|
|
|
|
///
|
2014-12-08 23:28:07 -06:00
|
|
|
/// # Examples
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
|
|
|
/// ```
|
2014-10-30 20:25:08 -05:00
|
|
|
/// use std::collections::BinaryHeap;
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2015-01-05 21:08:37 -06:00
|
|
|
/// let mut heap = BinaryHeap::from_vec(vec![1i, 2, 4, 5, 7]);
|
2014-11-22 01:01:38 -06:00
|
|
|
/// heap.push(6);
|
|
|
|
/// heap.push(3);
|
2014-07-21 07:39:28 -05:00
|
|
|
///
|
2014-11-22 01:01:38 -06:00
|
|
|
/// let vec = heap.into_sorted_vec();
|
2015-01-05 21:08:37 -06:00
|
|
|
/// assert_eq!(vec, vec![1i, 2, 3, 4, 5, 6, 7]);
|
2014-07-21 07:39:28 -05:00
|
|
|
/// ```
|
2014-12-17 20:16:18 -06:00
|
|
|
pub fn into_sorted_vec(mut self) -> Vec<T> {
|
|
|
|
let mut end = self.len();
|
2012-12-11 09:57:37 -06:00
|
|
|
while end > 1 {
|
2012-12-10 14:36:01 -06:00
|
|
|
end -= 1;
|
2014-12-17 20:16:18 -06:00
|
|
|
self.data.swap(0, end);
|
2014-12-22 06:13:09 -06:00
|
|
|
self.sift_down_range(0, end);
|
2012-12-10 14:36:01 -06:00
|
|
|
}
|
2014-12-17 20:16:18 -06:00
|
|
|
self.into_vec()
|
2012-12-10 14:36:01 -06:00
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
// The implementations of sift_up and sift_down use unsafe blocks in
|
2012-12-16 21:56:09 -06:00
|
|
|
// order to move an element out of the vector (leaving behind a
|
2013-05-13 18:46:20 -05:00
|
|
|
// zeroed element), shift along the others and move it back into the
|
2014-12-22 06:13:09 -06:00
|
|
|
// vector over the junk element. This reduces the constant factor
|
2012-12-16 21:56:09 -06:00
|
|
|
// compared to using swaps, which involves twice as many moves.
|
2014-12-22 06:13:09 -06:00
|
|
|
fn sift_up(&mut self, start: uint, mut pos: uint) {
|
2013-01-23 13:43:58 -06:00
|
|
|
unsafe {
|
2014-10-23 10:42:21 -05:00
|
|
|
let new = replace(&mut self.data[pos], zeroed());
|
2013-01-23 13:43:58 -06:00
|
|
|
|
|
|
|
while pos > start {
|
|
|
|
let parent = (pos - 1) >> 1;
|
2014-12-22 06:13:09 -06:00
|
|
|
|
|
|
|
if new <= self.data[parent] { break; }
|
|
|
|
|
|
|
|
let x = replace(&mut self.data[parent], zeroed());
|
|
|
|
ptr::write(&mut self.data[pos], x);
|
|
|
|
pos = parent;
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
2014-10-23 10:42:21 -05:00
|
|
|
ptr::write(&mut self.data[pos], new);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
fn sift_down_range(&mut self, mut pos: uint, end: uint) {
|
2013-01-23 13:43:58 -06:00
|
|
|
unsafe {
|
|
|
|
let start = pos;
|
2014-10-23 10:42:21 -05:00
|
|
|
let new = replace(&mut self.data[pos], zeroed());
|
2013-01-23 13:43:58 -06:00
|
|
|
|
|
|
|
let mut child = 2 * pos + 1;
|
|
|
|
while child < end {
|
|
|
|
let right = child + 1;
|
2014-08-11 18:47:46 -05:00
|
|
|
if right < end && !(self.data[child] > self.data[right]) {
|
2013-01-23 13:43:58 -06:00
|
|
|
child = right;
|
|
|
|
}
|
2014-10-23 10:42:21 -05:00
|
|
|
let x = replace(&mut self.data[child], zeroed());
|
|
|
|
ptr::write(&mut self.data[pos], x);
|
2013-01-23 13:43:58 -06:00
|
|
|
pos = child;
|
|
|
|
child = 2 * pos + 1;
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
2013-01-23 13:43:58 -06:00
|
|
|
|
2014-10-23 10:42:21 -05:00
|
|
|
ptr::write(&mut self.data[pos], new);
|
2014-12-22 06:13:09 -06:00
|
|
|
self.sift_up(start, pos);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
fn sift_down(&mut self, pos: uint) {
|
2013-02-09 00:21:45 -06:00
|
|
|
let len = self.len();
|
2014-12-22 06:13:09 -06:00
|
|
|
self.sift_down_range(pos, len);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
2014-10-30 15:43:24 -05:00
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Returns the length of the binary heap.
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-10-30 15:43:24 -05:00
|
|
|
pub fn len(&self) -> uint { self.data.len() }
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Checks if the binary heap is empty.
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-10-30 15:43:24 -05:00
|
|
|
pub fn is_empty(&self) -> bool { self.len() == 0 }
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Clears the binary heap, returning an iterator over the removed elements.
|
2014-12-16 16:45:03 -06:00
|
|
|
#[inline]
|
2015-01-22 20:22:03 -06:00
|
|
|
#[unstable(feature = "collections",
|
2015-01-12 20:40:19 -06:00
|
|
|
reason = "matches collection reform specification, waiting for dust to settle")]
|
2014-12-22 06:13:09 -06:00
|
|
|
pub fn drain(&mut self) -> Drain<T> {
|
|
|
|
Drain { iter: self.data.drain() }
|
2014-12-16 16:45:03 -06:00
|
|
|
}
|
|
|
|
|
2014-12-22 06:13:09 -06:00
|
|
|
/// Drops all items from the binary heap.
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-16 16:45:03 -06:00
|
|
|
pub fn clear(&mut self) { self.drain(); }
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2014-10-30 20:25:08 -05:00
|
|
|
/// `BinaryHeap` iterator.
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-19 14:52:10 -06:00
|
|
|
pub struct Iter <'a, T: 'a> {
|
|
|
|
iter: slice::Iter<'a, T>,
|
2014-08-27 20:46:52 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 21:54:18 -06:00
|
|
|
// FIXME(#19839) Remove in favor of `#[derive(Clone)]`
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-30 04:01:36 -06:00
|
|
|
impl<'a, T> Clone for Iter<'a, T> {
|
|
|
|
fn clone(&self) -> Iter<'a, T> {
|
|
|
|
Iter { iter: self.iter.clone() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<'a, T> Iterator for Iter<'a, T> {
|
|
|
|
type Item = &'a T;
|
|
|
|
|
2013-06-26 05:19:21 -05:00
|
|
|
#[inline]
|
2014-12-17 20:16:18 -06:00
|
|
|
fn next(&mut self) -> Option<&'a T> { self.iter.next() }
|
2013-07-03 13:30:12 -05:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) { self.iter.size_hint() }
|
2013-06-26 05:19:21 -05:00
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<'a, T> DoubleEndedIterator for Iter<'a, T> {
|
2014-11-25 20:57:32 -06:00
|
|
|
#[inline]
|
2014-12-17 20:16:18 -06:00
|
|
|
fn next_back(&mut self) -> Option<&'a T> { self.iter.next_back() }
|
2014-11-25 20:57:32 -06:00
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<'a, T> ExactSizeIterator for Iter<'a, T> {}
|
2014-11-25 20:57:32 -06:00
|
|
|
|
2014-11-23 00:31:40 -06:00
|
|
|
/// An iterator that moves out of a `BinaryHeap`.
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-12-19 14:52:10 -06:00
|
|
|
pub struct IntoIter<T> {
|
|
|
|
iter: vec::IntoIter<T>,
|
2014-11-23 00:31:40 -06:00
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<T> Iterator for IntoIter<T> {
|
|
|
|
type Item = T;
|
|
|
|
|
2014-11-23 00:31:40 -06:00
|
|
|
#[inline]
|
|
|
|
fn next(&mut self) -> Option<T> { self.iter.next() }
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) { self.iter.size_hint() }
|
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<T> DoubleEndedIterator for IntoIter<T> {
|
2014-11-23 00:31:40 -06:00
|
|
|
#[inline]
|
|
|
|
fn next_back(&mut self) -> Option<T> { self.iter.next_back() }
|
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<T> ExactSizeIterator for IntoIter<T> {}
|
2014-11-23 00:31:40 -06:00
|
|
|
|
2014-12-16 16:45:03 -06:00
|
|
|
/// An iterator that drains a `BinaryHeap`.
|
2015-01-22 20:22:03 -06:00
|
|
|
#[unstable(feature = "collections", reason = "recent addition")]
|
2014-12-16 16:45:03 -06:00
|
|
|
pub struct Drain<'a, T: 'a> {
|
|
|
|
iter: vec::Drain<'a, T>,
|
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<'a, T: 'a> Iterator for Drain<'a, T> {
|
|
|
|
type Item = T;
|
|
|
|
|
2014-12-16 16:45:03 -06:00
|
|
|
#[inline]
|
|
|
|
fn next(&mut self) -> Option<T> { self.iter.next() }
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) { self.iter.size_hint() }
|
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<'a, T: 'a> DoubleEndedIterator for Drain<'a, T> {
|
2014-12-16 16:45:03 -06:00
|
|
|
#[inline]
|
|
|
|
fn next_back(&mut self) -> Option<T> { self.iter.next_back() }
|
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2015-01-01 22:15:35 -06:00
|
|
|
impl<'a, T: 'a> ExactSizeIterator for Drain<'a, T> {}
|
2014-12-16 16:45:03 -06:00
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-10-30 20:25:08 -05:00
|
|
|
impl<T: Ord> FromIterator<T> for BinaryHeap<T> {
|
2015-01-01 22:15:35 -06:00
|
|
|
fn from_iter<Iter: Iterator<Item=T>>(iter: Iter) -> BinaryHeap<T> {
|
2014-12-17 20:16:18 -06:00
|
|
|
BinaryHeap::from_vec(iter.collect())
|
2013-07-29 19:06:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-12 20:40:19 -06:00
|
|
|
#[stable(feature = "grandfathered", since = "1.0.0")]
|
2014-11-07 18:39:39 -06:00
|
|
|
impl<T: Ord> Extend<T> for BinaryHeap<T> {
|
2015-01-01 22:15:35 -06:00
|
|
|
fn extend<Iter: Iterator<Item=T>>(&mut self, mut iter: Iter) {
|
2013-07-14 12:18:50 -05:00
|
|
|
let (lower, _) = iter.size_hint();
|
|
|
|
|
2014-11-06 11:24:47 -06:00
|
|
|
self.reserve(lower);
|
2013-07-14 12:18:50 -05:00
|
|
|
|
2014-03-20 08:12:56 -05:00
|
|
|
for elem in iter {
|
2013-07-29 19:06:49 -05:00
|
|
|
self.push(elem);
|
2013-07-14 12:18:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2014-12-19 06:02:22 -06:00
|
|
|
use prelude::*;
|
2014-05-29 21:03:06 -05:00
|
|
|
|
2014-10-30 20:25:08 -05:00
|
|
|
use super::BinaryHeap;
|
2012-12-09 19:02:33 -06:00
|
|
|
|
2013-06-26 05:19:21 -05:00
|
|
|
#[test]
|
|
|
|
fn test_iterator() {
|
2014-04-21 16:58:52 -05:00
|
|
|
let data = vec!(5i, 9, 3);
|
|
|
|
let iterout = [9i, 5, 3];
|
2014-11-22 01:01:38 -06:00
|
|
|
let heap = BinaryHeap::from_vec(data);
|
2013-06-26 05:19:21 -05:00
|
|
|
let mut i = 0;
|
2014-11-22 01:01:38 -06:00
|
|
|
for el in heap.iter() {
|
2013-06-26 05:19:21 -05:00
|
|
|
assert_eq!(*el, iterout[i]);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-25 20:57:32 -06:00
|
|
|
#[test]
|
|
|
|
fn test_iterator_reverse() {
|
|
|
|
let data = vec!(5i, 9, 3);
|
|
|
|
let iterout = vec!(3i, 5, 9);
|
|
|
|
let pq = BinaryHeap::from_vec(data);
|
|
|
|
|
|
|
|
let v: Vec<int> = pq.iter().rev().map(|&x| x).collect();
|
|
|
|
assert_eq!(v, iterout);
|
|
|
|
}
|
|
|
|
|
2014-11-23 00:31:40 -06:00
|
|
|
#[test]
|
|
|
|
fn test_move_iter() {
|
|
|
|
let data = vec!(5i, 9, 3);
|
|
|
|
let iterout = vec!(9i, 5, 3);
|
|
|
|
let pq = BinaryHeap::from_vec(data);
|
|
|
|
|
|
|
|
let v: Vec<int> = pq.into_iter().collect();
|
|
|
|
assert_eq!(v, iterout);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_move_iter_size_hint() {
|
|
|
|
let data = vec!(5i, 9);
|
|
|
|
let pq = BinaryHeap::from_vec(data);
|
|
|
|
|
|
|
|
let mut it = pq.into_iter();
|
|
|
|
|
|
|
|
assert_eq!(it.size_hint(), (2, Some(2)));
|
|
|
|
assert_eq!(it.next(), Some(9i));
|
|
|
|
|
|
|
|
assert_eq!(it.size_hint(), (1, Some(1)));
|
|
|
|
assert_eq!(it.next(), Some(5i));
|
|
|
|
|
|
|
|
assert_eq!(it.size_hint(), (0, Some(0)));
|
|
|
|
assert_eq!(it.next(), None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_move_iter_reverse() {
|
|
|
|
let data = vec!(5i, 9, 3);
|
|
|
|
let iterout = vec!(3i, 5, 9);
|
|
|
|
let pq = BinaryHeap::from_vec(data);
|
|
|
|
|
|
|
|
let v: Vec<int> = pq.into_iter().rev().collect();
|
|
|
|
assert_eq!(v, iterout);
|
|
|
|
}
|
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
#[test]
|
2014-12-19 17:53:40 -06:00
|
|
|
fn test_peek_and_pop() {
|
2014-04-05 00:45:42 -05:00
|
|
|
let data = vec!(2u, 4, 6, 2, 1, 8, 10, 3, 5, 7, 0, 9, 1);
|
2013-12-18 23:53:02 -06:00
|
|
|
let mut sorted = data.clone();
|
2013-12-19 06:03:11 -06:00
|
|
|
sorted.sort();
|
2014-10-30 20:25:08 -05:00
|
|
|
let mut heap = BinaryHeap::from_vec(data);
|
2013-01-24 13:46:09 -06:00
|
|
|
while !heap.is_empty() {
|
2014-12-19 17:53:40 -06:00
|
|
|
assert_eq!(heap.peek().unwrap(), sorted.last().unwrap());
|
2014-05-18 17:54:19 -05:00
|
|
|
assert_eq!(heap.pop().unwrap(), sorted.pop().unwrap());
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_push() {
|
2014-10-30 20:25:08 -05:00
|
|
|
let mut heap = BinaryHeap::from_vec(vec!(2i, 4, 9));
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 3);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == 9);
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(11);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 4);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == 11);
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(5);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == 11);
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(27);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 6);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == 27);
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(3);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 7);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == 27);
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(103);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 8);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == 103);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2012-12-16 21:53:14 -06:00
|
|
|
#[test]
|
|
|
|
fn test_push_unique() {
|
2014-10-30 20:25:08 -05:00
|
|
|
let mut heap = BinaryHeap::from_vec(vec!(box 2i, box 4, box 9));
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 3);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == box 9);
|
2014-04-25 03:08:02 -05:00
|
|
|
heap.push(box 11);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 4);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == box 11);
|
2014-04-25 03:08:02 -05:00
|
|
|
heap.push(box 5);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == box 11);
|
2014-04-25 03:08:02 -05:00
|
|
|
heap.push(box 27);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 6);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == box 27);
|
2014-04-25 03:08:02 -05:00
|
|
|
heap.push(box 3);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 7);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == box 27);
|
2014-04-25 03:08:02 -05:00
|
|
|
heap.push(box 103);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 8);
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(*heap.peek().unwrap() == box 103);
|
2012-12-16 21:53:14 -06:00
|
|
|
}
|
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
#[test]
|
|
|
|
fn test_push_pop() {
|
2014-10-30 20:25:08 -05:00
|
|
|
let mut heap = BinaryHeap::from_vec(vec!(5i, 5, 2, 1, 3));
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
|
|
|
assert_eq!(heap.push_pop(6), 6);
|
|
|
|
assert_eq!(heap.len(), 5);
|
|
|
|
assert_eq!(heap.push_pop(0), 5);
|
|
|
|
assert_eq!(heap.len(), 5);
|
|
|
|
assert_eq!(heap.push_pop(4), 5);
|
|
|
|
assert_eq!(heap.len(), 5);
|
|
|
|
assert_eq!(heap.push_pop(1), 4);
|
|
|
|
assert_eq!(heap.len(), 5);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_replace() {
|
2014-10-30 20:25:08 -05:00
|
|
|
let mut heap = BinaryHeap::from_vec(vec!(5i, 5, 2, 1, 3));
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
2014-05-18 17:54:19 -05:00
|
|
|
assert_eq!(heap.replace(6).unwrap(), 5);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
2014-05-18 17:54:19 -05:00
|
|
|
assert_eq!(heap.replace(0).unwrap(), 6);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
2014-05-18 17:54:19 -05:00
|
|
|
assert_eq!(heap.replace(4).unwrap(), 5);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
2014-05-18 17:54:19 -05:00
|
|
|
assert_eq!(heap.replace(1).unwrap(), 4);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2014-04-05 00:45:42 -05:00
|
|
|
fn check_to_vec(mut data: Vec<int>) {
|
2014-10-30 20:25:08 -05:00
|
|
|
let heap = BinaryHeap::from_vec(data.clone());
|
2014-05-18 17:54:19 -05:00
|
|
|
let mut v = heap.clone().into_vec();
|
2013-12-19 06:03:11 -06:00
|
|
|
v.sort();
|
|
|
|
data.sort();
|
2013-12-18 23:53:02 -06:00
|
|
|
|
2014-11-27 10:45:50 -06:00
|
|
|
assert_eq!(v, data);
|
|
|
|
assert_eq!(heap.into_sorted_vec(), data);
|
2012-12-11 09:57:37 -06:00
|
|
|
}
|
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
#[test]
|
2012-12-11 09:57:37 -06:00
|
|
|
fn test_to_vec() {
|
2014-04-05 00:45:42 -05:00
|
|
|
check_to_vec(vec!());
|
2014-04-21 16:58:52 -05:00
|
|
|
check_to_vec(vec!(5i));
|
|
|
|
check_to_vec(vec!(3i, 2));
|
|
|
|
check_to_vec(vec!(2i, 3));
|
|
|
|
check_to_vec(vec!(5i, 1, 2));
|
|
|
|
check_to_vec(vec!(1i, 100, 2, 3));
|
|
|
|
check_to_vec(vec!(1i, 3, 5, 7, 9, 2, 4, 6, 8, 0));
|
|
|
|
check_to_vec(vec!(2i, 4, 6, 2, 1, 8, 10, 3, 5, 7, 0, 9, 1));
|
|
|
|
check_to_vec(vec!(9i, 11, 9, 9, 9, 9, 11, 2, 3, 4, 11, 9, 0, 0, 0, 0));
|
|
|
|
check_to_vec(vec!(0i, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
|
|
|
|
check_to_vec(vec!(10i, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0));
|
|
|
|
check_to_vec(vec!(0i, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 1, 2));
|
|
|
|
check_to_vec(vec!(5i, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1));
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-08-08 13:38:10 -05:00
|
|
|
fn test_empty_pop() {
|
2014-12-17 20:16:18 -06:00
|
|
|
let mut heap = BinaryHeap::<int>::new();
|
2014-05-18 17:54:19 -05:00
|
|
|
assert!(heap.pop().is_none());
|
2013-08-08 13:38:10 -05:00
|
|
|
}
|
2012-12-09 19:02:33 -06:00
|
|
|
|
|
|
|
#[test]
|
2014-12-19 17:53:40 -06:00
|
|
|
fn test_empty_peek() {
|
2014-12-17 20:16:18 -06:00
|
|
|
let empty = BinaryHeap::<int>::new();
|
2014-12-19 17:53:40 -06:00
|
|
|
assert!(empty.peek().is_none());
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-08-08 13:38:10 -05:00
|
|
|
fn test_empty_replace() {
|
2014-12-17 20:16:18 -06:00
|
|
|
let mut heap = BinaryHeap::<int>::new();
|
|
|
|
assert!(heap.replace(5).is_none());
|
2013-08-08 13:38:10 -05:00
|
|
|
}
|
2013-07-14 12:18:50 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_from_iter() {
|
2014-04-05 00:45:42 -05:00
|
|
|
let xs = vec!(9u, 8, 7, 6, 5, 4, 3, 2, 1);
|
2013-07-14 12:18:50 -05:00
|
|
|
|
2014-11-27 10:45:50 -06:00
|
|
|
let mut q: BinaryHeap<uint> = xs.iter().rev().map(|&x| x).collect();
|
2013-07-14 12:18:50 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for &x in xs.iter() {
|
2014-05-18 17:54:19 -05:00
|
|
|
assert_eq!(q.pop().unwrap(), x);
|
2013-07-14 12:18:50 -05:00
|
|
|
}
|
|
|
|
}
|
2014-12-16 16:45:03 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_drain() {
|
|
|
|
let mut q: BinaryHeap<_> =
|
|
|
|
[9u, 8, 7, 6, 5, 4, 3, 2, 1].iter().cloned().collect();
|
|
|
|
|
|
|
|
assert_eq!(q.drain().take(5).count(), 5);
|
|
|
|
|
|
|
|
assert!(q.is_empty());
|
|
|
|
}
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|