2013-01-18 01:28:42 -06:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// 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
|
|
|
|
2012-12-16 21:53:24 -06:00
|
|
|
//! A priority queue implemented with a binary heap
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
#[allow(missing_doc)];
|
|
|
|
|
2013-07-11 14:05:17 -05:00
|
|
|
use std::clone::Clone;
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::unstable::intrinsics::{move_val_init, init};
|
|
|
|
use std::util::{replace, swap};
|
|
|
|
use std::vec;
|
2012-12-15 12:24:10 -06:00
|
|
|
|
2013-06-23 16:57:39 -05:00
|
|
|
/// A priority queue implemented with a binary heap
|
2013-07-11 14:05:17 -05:00
|
|
|
#[deriving(Clone)]
|
2013-01-28 12:46:43 -06:00
|
|
|
pub struct PriorityQueue<T> {
|
2012-12-09 19:02:33 -06:00
|
|
|
priv data: ~[T],
|
|
|
|
}
|
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
impl<T:Ord> Container for PriorityQueue<T> {
|
2013-01-21 20:59:19 -06:00
|
|
|
/// Returns the length of the queue
|
2013-06-15 01:20:06 -05:00
|
|
|
fn len(&self) -> uint { self.data.len() }
|
2013-01-21 20:59:19 -06:00
|
|
|
}
|
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
impl<T:Ord> Mutable for PriorityQueue<T> {
|
2013-01-21 16:25:57 -06:00
|
|
|
/// Drop all items from the queue
|
|
|
|
fn clear(&mut self) { self.data.truncate(0) }
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl<T:Ord> PriorityQueue<T> {
|
2013-06-26 05:19:21 -05:00
|
|
|
/// An iterator visiting all values in underlying vector, in
|
|
|
|
/// arbitrary order.
|
2014-01-14 21:32:24 -06:00
|
|
|
pub fn iter<'a>(&'a self) -> Items<'a, T> {
|
|
|
|
Items { iter: self.data.iter() }
|
2013-06-26 05:19:21 -05:00
|
|
|
}
|
2013-06-23 16:57:39 -05:00
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
/// Returns the greatest item in the queue - fails if empty
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn top<'a>(&'a self) -> &'a T { &self.data[0] }
|
2013-04-10 15:14:06 -05:00
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
/// Returns the greatest item in the queue - None if empty
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn maybe_top<'a>(&'a self) -> Option<&'a T> {
|
2013-04-10 15:14:06 -05:00
|
|
|
if self.is_empty() { None } else { Some(self.top()) }
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the number of elements the queue can hold without reallocating
|
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-01-31 07:03:20 -06:00
|
|
|
/// Reserve capacity for exactly n elements in the PriorityQueue.
|
|
|
|
/// Do nothing if the capacity is already sufficient.
|
|
|
|
pub fn reserve_exact(&mut self, n: uint) { self.data.reserve_exact(n) }
|
2012-12-09 19:02:33 -06:00
|
|
|
|
2014-01-31 07:03:20 -06:00
|
|
|
/// Reserve capacity for at least n elements in the PriorityQueue.
|
|
|
|
/// Do nothing if the capacity is already sufficient.
|
|
|
|
pub fn reserve(&mut self, n: uint) {
|
|
|
|
self.data.reserve(n)
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Pop the greatest item from the queue - fails if empty
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn pop(&mut self) -> T {
|
2013-12-23 09:20:52 -06:00
|
|
|
let mut item = self.data.pop().unwrap();
|
2013-05-05 23:42:54 -05:00
|
|
|
if !self.is_empty() {
|
|
|
|
swap(&mut item, &mut self.data[0]);
|
|
|
|
self.siftdown(0);
|
|
|
|
}
|
2012-12-11 08:47:36 -06:00
|
|
|
item
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Pop the greatest item from the queue - None if empty
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn maybe_pop(&mut self) -> Option<T> {
|
2012-12-09 19:02:33 -06:00
|
|
|
if self.is_empty() { None } else { Some(self.pop()) }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Push an item onto the queue
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn push(&mut self, item: T) {
|
2012-12-09 19:02:33 -06:00
|
|
|
self.data.push(item);
|
2013-02-09 00:21:45 -06:00
|
|
|
let new_len = self.len() - 1;
|
|
|
|
self.siftup(0, new_len);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Optimized version of a push followed by a pop
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn push_pop(&mut self, mut item: T) -> T {
|
2013-01-24 13:46:09 -06:00
|
|
|
if !self.is_empty() && self.data[0] > item {
|
2013-05-05 23:42:54 -05:00
|
|
|
swap(&mut item, &mut self.data[0]);
|
2012-12-11 16:34:50 -06:00
|
|
|
self.siftdown(0);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
item
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Optimized version of a pop followed by a push - fails if empty
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn replace(&mut self, mut item: T) -> T {
|
2013-05-05 23:42:54 -05:00
|
|
|
swap(&mut item, &mut self.data[0]);
|
2012-12-11 16:34:50 -06:00
|
|
|
self.siftdown(0);
|
2012-12-11 08:47:36 -06:00
|
|
|
item
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2012-12-10 14:36:01 -06:00
|
|
|
/// Consume the PriorityQueue and return the underlying vector
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn to_vec(self) -> ~[T] { let PriorityQueue{data: v} = self; v }
|
2012-12-10 14:36:01 -06:00
|
|
|
|
2012-12-16 21:56:09 -06:00
|
|
|
/// Consume the PriorityQueue and return a vector in sorted
|
|
|
|
/// (ascending) order
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn to_sorted_vec(self) -> ~[T] {
|
2012-12-10 14:36:01 -06:00
|
|
|
let mut q = self;
|
2012-12-11 09:57:37 -06:00
|
|
|
let mut end = q.len();
|
|
|
|
while end > 1 {
|
2012-12-10 14:36:01 -06:00
|
|
|
end -= 1;
|
2013-06-28 11:54:03 -05:00
|
|
|
q.data.swap(0, end);
|
2013-03-22 17:07:09 -05:00
|
|
|
q.siftdown_range(0, end)
|
2012-12-10 14:36:01 -06:00
|
|
|
}
|
|
|
|
q.to_vec()
|
|
|
|
}
|
|
|
|
|
2012-12-17 17:08:59 -06:00
|
|
|
/// Create an empty PriorityQueue
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn new() -> PriorityQueue<T> { PriorityQueue{data: ~[],} }
|
2012-12-17 17:08:59 -06:00
|
|
|
|
2012-12-15 13:29:38 -06:00
|
|
|
/// Create a PriorityQueue from a vector (heapify)
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn from_vec(xs: ~[T]) -> PriorityQueue<T> {
|
2012-12-10 14:46:41 -06:00
|
|
|
let mut q = PriorityQueue{data: xs,};
|
|
|
|
let mut n = q.len() / 2;
|
|
|
|
while n > 0 {
|
|
|
|
n -= 1;
|
2013-03-22 17:07:09 -05:00
|
|
|
q.siftdown(n)
|
2012-12-10 14:46:41 -06:00
|
|
|
}
|
|
|
|
q
|
|
|
|
}
|
|
|
|
|
2012-12-16 21:56:09 -06:00
|
|
|
// The implementations of siftup and siftdown use unsafe blocks in
|
|
|
|
// 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
|
2012-12-16 21:56:09 -06:00
|
|
|
// vector over the junk element. This reduces the constant factor
|
|
|
|
// compared to using swaps, which involves twice as many moves.
|
2013-05-31 17:17:22 -05:00
|
|
|
fn siftup(&mut self, start: uint, mut pos: uint) {
|
2013-01-23 13:43:58 -06:00
|
|
|
unsafe {
|
2013-05-13 18:46:20 -05:00
|
|
|
let new = replace(&mut self.data[pos], init());
|
2013-01-23 13:43:58 -06:00
|
|
|
|
|
|
|
while pos > start {
|
|
|
|
let parent = (pos - 1) >> 1;
|
|
|
|
if new > self.data[parent] {
|
2013-05-12 19:36:53 -05:00
|
|
|
let x = replace(&mut self.data[parent], init());
|
2013-05-09 16:14:42 -05:00
|
|
|
move_val_init(&mut self.data[pos], x);
|
2013-01-23 13:43:58 -06:00
|
|
|
pos = parent;
|
2013-10-01 16:31:03 -05:00
|
|
|
continue
|
2013-01-23 13:43:58 -06:00
|
|
|
}
|
|
|
|
break
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
2013-05-09 16:14:42 -05:00
|
|
|
move_val_init(&mut self.data[pos], new);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
fn siftdown_range(&mut self, mut pos: uint, end: uint) {
|
2013-01-23 13:43:58 -06:00
|
|
|
unsafe {
|
|
|
|
let start = pos;
|
2013-05-13 18:46:20 -05:00
|
|
|
let new = replace(&mut self.data[pos], init());
|
2013-01-23 13:43:58 -06:00
|
|
|
|
|
|
|
let mut child = 2 * pos + 1;
|
|
|
|
while child < end {
|
|
|
|
let right = child + 1;
|
|
|
|
if right < end && !(self.data[child] > self.data[right]) {
|
|
|
|
child = right;
|
|
|
|
}
|
2013-05-12 19:36:53 -05:00
|
|
|
let x = replace(&mut self.data[child], init());
|
2013-05-09 16:14:42 -05:00
|
|
|
move_val_init(&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
|
|
|
|
2013-05-09 16:14:42 -05:00
|
|
|
move_val_init(&mut self.data[pos], new);
|
2013-01-23 13:43:58 -06:00
|
|
|
self.siftup(start, pos);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
fn siftdown(&mut self, pos: uint) {
|
2013-02-09 00:21:45 -06:00
|
|
|
let len = self.len();
|
|
|
|
self.siftdown_range(pos, len);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-26 05:19:21 -05:00
|
|
|
/// PriorityQueue iterator
|
2014-01-14 21:32:24 -06:00
|
|
|
pub struct Items <'a, T> {
|
|
|
|
priv iter: vec::Items<'a, T>,
|
2013-06-26 05:19:21 -05:00
|
|
|
}
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
impl<'a, T> Iterator<&'a T> for Items<'a, T> {
|
2013-06-26 05:19:21 -05:00
|
|
|
#[inline]
|
2013-12-10 01: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
|
|
|
}
|
|
|
|
|
std: Move the iterator param on FromIterator and Extendable to the method.
If they are on the trait then it is extremely annoying to use them as
generic parameters to a function, e.g. with the iterator param on the trait
itself, if one was to pass an Extendable<int> to a function that filled it
either from a Range or a Map<VecIterator>, one needs to write something
like:
fn foo<E: Extendable<int, Range<int>> +
Extendable<int, Map<&'self int, int, VecIterator<int>>>
(e: &mut E, ...) { ... }
since using a generic, i.e. `foo<E: Extendable<int, I>, I: Iterator<int>>`
means that `foo` takes 2 type parameters, and the caller has to specify them
(which doesn't work anyway, as they'll mismatch with the iterators used in
`foo` itself).
This patch changes it to:
fn foo<E: Extendable<int>>(e: &mut E, ...) { ... }
2013-08-13 08:08:14 -05:00
|
|
|
impl<T: Ord> FromIterator<T> for PriorityQueue<T> {
|
|
|
|
fn from_iterator<Iter: Iterator<T>>(iter: &mut Iter) -> PriorityQueue<T> {
|
2013-07-29 19:06:49 -05:00
|
|
|
let mut q = PriorityQueue::new();
|
|
|
|
q.extend(iter);
|
|
|
|
|
|
|
|
q
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
std: Move the iterator param on FromIterator and Extendable to the method.
If they are on the trait then it is extremely annoying to use them as
generic parameters to a function, e.g. with the iterator param on the trait
itself, if one was to pass an Extendable<int> to a function that filled it
either from a Range or a Map<VecIterator>, one needs to write something
like:
fn foo<E: Extendable<int, Range<int>> +
Extendable<int, Map<&'self int, int, VecIterator<int>>>
(e: &mut E, ...) { ... }
since using a generic, i.e. `foo<E: Extendable<int, I>, I: Iterator<int>>`
means that `foo` takes 2 type parameters, and the caller has to specify them
(which doesn't work anyway, as they'll mismatch with the iterators used in
`foo` itself).
This patch changes it to:
fn foo<E: Extendable<int>>(e: &mut E, ...) { ... }
2013-08-13 08:08:14 -05:00
|
|
|
impl<T: Ord> Extendable<T> for PriorityQueue<T> {
|
|
|
|
fn extend<Iter: Iterator<T>>(&mut self, iter: &mut Iter) {
|
2013-07-14 12:18:50 -05:00
|
|
|
let (lower, _) = iter.size_hint();
|
|
|
|
|
2013-07-29 19:06:49 -05:00
|
|
|
let len = self.capacity();
|
2014-01-31 07:03:20 -06:00
|
|
|
self.reserve(len + lower);
|
2013-07-14 12:18:50 -05:00
|
|
|
|
2013-08-03 11:45:23 -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 {
|
2013-05-21 19:24:31 -05:00
|
|
|
use priority_queue::PriorityQueue;
|
2012-12-09 19:02:33 -06:00
|
|
|
|
2013-06-26 05:19:21 -05:00
|
|
|
#[test]
|
|
|
|
fn test_iterator() {
|
|
|
|
let data = ~[5, 9, 3];
|
|
|
|
let iterout = ~[9, 5, 3];
|
|
|
|
let pq = PriorityQueue::from_vec(data);
|
|
|
|
let mut i = 0;
|
2013-08-03 11:45:23 -05:00
|
|
|
for el in pq.iter() {
|
2013-06-26 05:19:21 -05:00
|
|
|
assert_eq!(*el, iterout[i]);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
#[test]
|
|
|
|
fn test_top_and_pop() {
|
2013-06-09 02:23:05 -05:00
|
|
|
let data = ~[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();
|
2013-05-21 19:24:31 -05:00
|
|
|
let mut heap = PriorityQueue::from_vec(data);
|
2013-01-24 13:46:09 -06:00
|
|
|
while !heap.is_empty() {
|
2013-12-23 08:08:23 -06:00
|
|
|
assert_eq!(heap.top(), sorted.last().unwrap());
|
2013-12-23 09:20:52 -06:00
|
|
|
assert_eq!(heap.pop(), sorted.pop().unwrap());
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_push() {
|
2013-05-21 19:24:31 -05:00
|
|
|
let mut heap = PriorityQueue::from_vec(~[2, 4, 9]);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 3);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == 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);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == 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);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == 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);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == 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);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == 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);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == 103);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2012-12-16 21:53:14 -06:00
|
|
|
#[test]
|
|
|
|
fn test_push_unique() {
|
2013-05-21 19:24:31 -05:00
|
|
|
let mut heap = PriorityQueue::from_vec(~[~2, ~4, ~9]);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 3);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == ~9);
|
2012-12-16 21:53:14 -06:00
|
|
|
heap.push(~11);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 4);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == ~11);
|
2012-12-16 21:53:14 -06:00
|
|
|
heap.push(~5);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == ~11);
|
2012-12-16 21:53:14 -06:00
|
|
|
heap.push(~27);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 6);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == ~27);
|
2012-12-16 21:53:14 -06:00
|
|
|
heap.push(~3);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 7);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == ~27);
|
2012-12-16 21:53:14 -06:00
|
|
|
heap.push(~103);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 8);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(*heap.top() == ~103);
|
2012-12-16 21:53:14 -06:00
|
|
|
}
|
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
#[test]
|
|
|
|
fn test_push_pop() {
|
2013-05-21 19:24:31 -05:00
|
|
|
let mut heap = PriorityQueue::from_vec(~[5, 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() {
|
2013-05-21 19:24:31 -05:00
|
|
|
let mut heap = PriorityQueue::from_vec(~[5, 5, 2, 1, 3]);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(heap.len(), 5);
|
|
|
|
assert_eq!(heap.replace(6), 5);
|
|
|
|
assert_eq!(heap.len(), 5);
|
|
|
|
assert_eq!(heap.replace(0), 6);
|
|
|
|
assert_eq!(heap.len(), 5);
|
|
|
|
assert_eq!(heap.replace(4), 5);
|
|
|
|
assert_eq!(heap.len(), 5);
|
|
|
|
assert_eq!(heap.replace(1), 4);
|
|
|
|
assert_eq!(heap.len(), 5);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2013-12-18 23:53:02 -06:00
|
|
|
fn check_to_vec(mut data: ~[int]) {
|
2013-07-02 14:47:32 -05:00
|
|
|
let heap = PriorityQueue::from_vec(data.clone());
|
2013-12-18 23:53:02 -06:00
|
|
|
let mut v = heap.clone().to_vec();
|
2013-12-19 06:03:11 -06:00
|
|
|
v.sort();
|
|
|
|
data.sort();
|
2013-12-18 23:53:02 -06:00
|
|
|
|
|
|
|
assert_eq!(v, data);
|
|
|
|
assert_eq!(heap.to_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() {
|
|
|
|
check_to_vec(~[]);
|
|
|
|
check_to_vec(~[5]);
|
|
|
|
check_to_vec(~[3, 2]);
|
|
|
|
check_to_vec(~[2, 3]);
|
|
|
|
check_to_vec(~[5, 1, 2]);
|
|
|
|
check_to_vec(~[1, 100, 2, 3]);
|
|
|
|
check_to_vec(~[1, 3, 5, 7, 9, 2, 4, 6, 8, 0]);
|
|
|
|
check_to_vec(~[2, 4, 6, 2, 1, 8, 10, 3, 5, 7, 0, 9, 1]);
|
|
|
|
check_to_vec(~[9, 11, 9, 9, 9, 9, 11, 2, 3, 4, 11, 9, 0, 0, 0, 0]);
|
|
|
|
check_to_vec(~[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
|
|
|
|
check_to_vec(~[10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0]);
|
|
|
|
check_to_vec(~[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 1, 2]);
|
|
|
|
check_to_vec(~[5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1]);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2013-08-08 13:38:10 -05:00
|
|
|
fn test_empty_pop() {
|
|
|
|
let mut heap: PriorityQueue<int> = PriorityQueue::new();
|
|
|
|
heap.pop();
|
|
|
|
}
|
2012-12-09 19:02:33 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty_maybe_pop() {
|
2013-08-08 13:38:10 -05:00
|
|
|
let mut heap: PriorityQueue<int> = PriorityQueue::new();
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(heap.maybe_pop().is_none());
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2013-08-08 13:38:10 -05:00
|
|
|
fn test_empty_top() {
|
|
|
|
let empty: PriorityQueue<int> = PriorityQueue::new();
|
|
|
|
empty.top();
|
|
|
|
}
|
2012-12-09 19:02:33 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty_maybe_top() {
|
2013-08-08 13:38:10 -05:00
|
|
|
let empty: PriorityQueue<int> = PriorityQueue::new();
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(empty.maybe_top().is_none());
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2013-08-08 13:38:10 -05:00
|
|
|
fn test_empty_replace() {
|
|
|
|
let mut heap: PriorityQueue<int> = PriorityQueue::new();
|
|
|
|
heap.replace(5);
|
|
|
|
}
|
2013-07-14 12:18:50 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_from_iter() {
|
|
|
|
let xs = ~[9u, 8, 7, 6, 5, 4, 3, 2, 1];
|
|
|
|
|
2013-08-09 22:09:47 -05:00
|
|
|
let mut q: PriorityQueue<uint> = xs.rev_iter().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() {
|
2013-07-14 12:18:50 -05:00
|
|
|
assert_eq!(q.pop(), x);
|
|
|
|
}
|
|
|
|
}
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|