2012-12-09 19:02:33 -06:00
|
|
|
|
2012-12-16 21:53:24 -06:00
|
|
|
//! A priority queue implemented with a binary heap
|
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
use core::cmp::Ord;
|
2012-12-15 12:24:10 -06:00
|
|
|
use ptr::addr_of;
|
2012-12-09 19:02:33 -06:00
|
|
|
|
2012-12-15 12:24:10 -06:00
|
|
|
#[abi = "rust-intrinsic"]
|
|
|
|
extern "C" mod rusti {
|
|
|
|
fn move_val_init<T>(dst: &mut T, -src: T);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PriorityQueue <T: Ord>{
|
2012-12-09 19:02:33 -06:00
|
|
|
priv data: ~[T],
|
|
|
|
}
|
|
|
|
|
2012-12-15 12:24:10 -06:00
|
|
|
impl <T: Ord> PriorityQueue<T> {
|
2012-12-09 19:02:33 -06:00
|
|
|
/// Returns the greatest item in the queue - fails if empty
|
2012-12-11 11:19:20 -06:00
|
|
|
pure fn top(&self) -> &self/T { &self.data[0] }
|
2012-12-09 19:02:33 -06:00
|
|
|
|
|
|
|
/// Returns the greatest item in the queue - None if empty
|
2012-12-11 11:19:20 -06:00
|
|
|
pure fn maybe_top(&self) -> Option<&self/T> {
|
2012-12-09 19:02:33 -06:00
|
|
|
if self.is_empty() { None } else { Some(self.top()) }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the length of the queue
|
|
|
|
pure fn len(&self) -> uint { self.data.len() }
|
|
|
|
|
|
|
|
/// Returns true if a queue contains no elements
|
|
|
|
pure fn is_empty(&self) -> bool { self.data.is_empty() }
|
|
|
|
|
|
|
|
/// Returns true if a queue contains some elements
|
|
|
|
pure fn is_not_empty(&self) -> bool { self.data.is_not_empty() }
|
|
|
|
|
|
|
|
/// Returns the number of elements the queue can hold without reallocating
|
|
|
|
pure fn capacity(&self) -> uint { vec::capacity(&self.data) }
|
|
|
|
|
|
|
|
fn reserve(&mut self, n: uint) { vec::reserve(&mut self.data, n) }
|
|
|
|
|
|
|
|
fn reserve_at_least(&mut self, n: uint) {
|
|
|
|
vec::reserve_at_least(&mut self.data, n)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Drop all items from the queue
|
|
|
|
fn clear(&mut self) { self.data.truncate(0) }
|
|
|
|
|
|
|
|
/// Pop the greatest item from the queue - fails if empty
|
|
|
|
fn pop(&mut self) -> T {
|
2012-12-11 08:47:36 -06:00
|
|
|
let mut item = self.data.pop();
|
2012-12-11 16:34:50 -06:00
|
|
|
if self.is_not_empty() { item <-> 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
|
|
|
|
fn maybe_pop(&mut self) -> Option<T> {
|
|
|
|
if self.is_empty() { None } else { Some(self.pop()) }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Push an item onto the queue
|
|
|
|
fn push(&mut self, item: T) {
|
|
|
|
self.data.push(item);
|
2012-12-11 16:34:50 -06:00
|
|
|
self.siftup(0, self.len() - 1);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Optimized version of a push followed by a pop
|
|
|
|
fn push_pop(&mut self, item: T) -> T {
|
|
|
|
let mut item = item;
|
|
|
|
if self.is_not_empty() && self.data[0] > item {
|
|
|
|
item <-> 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
|
|
|
|
fn replace(&mut self, item: T) -> T {
|
2012-12-11 08:47:36 -06:00
|
|
|
let mut item = item;
|
|
|
|
item <-> 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
|
2012-12-16 21:41:07 -06:00
|
|
|
#[cfg(stage0)]
|
|
|
|
pure fn to_vec(self) -> ~[T] { fail }
|
|
|
|
#[cfg(stage1)]
|
|
|
|
#[cfg(stage2)]
|
|
|
|
#[cfg(stage3)]
|
2012-12-10 14:36:01 -06:00
|
|
|
pure fn to_vec(self) -> ~[T] { let PriorityQueue{data: v} = self; v }
|
|
|
|
|
2012-12-16 21:56:09 -06:00
|
|
|
/// Consume the PriorityQueue and return a vector in sorted
|
|
|
|
/// (ascending) order
|
2012-12-16 21:41:07 -06:00
|
|
|
#[cfg(stage0)]
|
|
|
|
pure fn to_sorted_vec(self) -> ~[T] { fail }
|
|
|
|
#[cfg(stage1)]
|
|
|
|
#[cfg(stage2)]
|
|
|
|
#[cfg(stage3)]
|
2012-12-10 14:36:01 -06:00
|
|
|
pure fn to_sorted_vec(self) -> ~[T] {
|
|
|
|
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;
|
2012-12-11 09:57:37 -06:00
|
|
|
q.data[end] <-> q.data[0];
|
2012-12-11 16:34:50 -06:00
|
|
|
unsafe { q.siftdown_range(0, end) } // purity-checking workaround
|
2012-12-10 14:36:01 -06:00
|
|
|
}
|
|
|
|
q.to_vec()
|
|
|
|
}
|
|
|
|
|
2012-12-15 13:29:38 -06:00
|
|
|
/// Create a PriorityQueue from a vector (heapify)
|
2012-12-10 14:46:41 -06:00
|
|
|
static pub pure fn from_vec(xs: ~[T]) -> PriorityQueue<T> {
|
|
|
|
let mut q = PriorityQueue{data: xs,};
|
|
|
|
let mut n = q.len() / 2;
|
|
|
|
while n > 0 {
|
|
|
|
n -= 1;
|
2012-12-11 16:34:50 -06:00
|
|
|
unsafe { q.siftdown(n) }; // purity-checking workaround
|
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
|
|
|
|
// junk element), shift along the others and move it back into the
|
|
|
|
// vector over the junk element. This reduces the constant factor
|
|
|
|
// compared to using swaps, which involves twice as many moves.
|
2012-12-15 12:24:10 -06:00
|
|
|
|
|
|
|
priv fn siftup(&mut self, start: uint, pos: uint) unsafe {
|
2012-12-09 19:02:33 -06:00
|
|
|
let mut pos = pos;
|
2012-12-15 12:24:10 -06:00
|
|
|
let new = move *addr_of(&self.data[pos]);
|
2012-12-15 11:14:07 -06:00
|
|
|
|
|
|
|
while pos > start {
|
|
|
|
let parent = (pos - 1) >> 1;
|
|
|
|
if new > self.data[parent] {
|
2012-12-15 12:24:10 -06:00
|
|
|
rusti::move_val_init(&mut self.data[pos],
|
|
|
|
move *addr_of(&self.data[parent]));
|
2012-12-15 11:14:07 -06:00
|
|
|
pos = parent;
|
2012-12-09 19:02:33 -06:00
|
|
|
loop
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
2012-12-15 12:24:10 -06:00
|
|
|
rusti::move_val_init(&mut self.data[pos], move new);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2012-12-15 12:24:10 -06:00
|
|
|
priv fn siftdown_range(&mut self, pos: uint, end: uint) unsafe {
|
2012-12-09 19:02:33 -06:00
|
|
|
let mut pos = pos;
|
2012-12-15 11:14:07 -06:00
|
|
|
let start = pos;
|
2012-12-15 12:24:10 -06:00
|
|
|
let new = move *addr_of(&self.data[pos]);
|
2012-12-15 11:14:07 -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;
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
2012-12-15 12:24:10 -06:00
|
|
|
rusti::move_val_init(&mut self.data[pos],
|
|
|
|
move *addr_of(&self.data[child]));
|
2012-12-15 11:14:07 -06:00
|
|
|
pos = child;
|
|
|
|
child = 2 * pos + 1;
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
2012-12-15 12:24:10 -06:00
|
|
|
rusti::move_val_init(&mut self.data[pos], move new);
|
2012-12-15 11:14:07 -06:00
|
|
|
self.siftup(start, pos);
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
2012-12-11 16:34:50 -06:00
|
|
|
priv fn siftdown(&mut self, pos: uint) {
|
|
|
|
self.siftdown_range(pos, self.len());
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use sort::merge_sort;
|
|
|
|
use core::cmp::le;
|
2012-12-15 10:15:25 -06:00
|
|
|
use priority_queue::PriorityQueue::from_vec;
|
2012-12-09 19:02:33 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_top_and_pop() {
|
|
|
|
let data = ~[2, 4, 6, 2, 1, 8, 10, 3, 5, 7, 0, 9, 1];
|
|
|
|
let mut sorted = merge_sort(data, le);
|
|
|
|
let mut heap = from_vec(data);
|
|
|
|
while heap.is_not_empty() {
|
2012-12-11 11:19:20 -06:00
|
|
|
assert *heap.top() == sorted.last();
|
2012-12-09 19:02:33 -06:00
|
|
|
assert heap.pop() == sorted.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_push() {
|
|
|
|
let mut heap = from_vec(~[2, 4, 9]);
|
|
|
|
assert heap.len() == 3;
|
2012-12-11 11:19:20 -06:00
|
|
|
assert *heap.top() == 9;
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(11);
|
|
|
|
assert heap.len() == 4;
|
2012-12-11 11:19:20 -06:00
|
|
|
assert *heap.top() == 11;
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(5);
|
|
|
|
assert heap.len() == 5;
|
2012-12-11 11:19:20 -06:00
|
|
|
assert *heap.top() == 11;
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(27);
|
|
|
|
assert heap.len() == 6;
|
2012-12-11 11:19:20 -06:00
|
|
|
assert *heap.top() == 27;
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(3);
|
|
|
|
assert heap.len() == 7;
|
2012-12-11 11:19:20 -06:00
|
|
|
assert *heap.top() == 27;
|
2012-12-09 19:02:33 -06:00
|
|
|
heap.push(103);
|
|
|
|
assert heap.len() == 8;
|
2012-12-11 11:19:20 -06: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() {
|
|
|
|
let mut heap = from_vec(~[~2, ~4, ~9]);
|
|
|
|
assert heap.len() == 3;
|
|
|
|
assert *heap.top() == ~9;
|
|
|
|
heap.push(~11);
|
|
|
|
assert heap.len() == 4;
|
|
|
|
assert *heap.top() == ~11;
|
|
|
|
heap.push(~5);
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert *heap.top() == ~11;
|
|
|
|
heap.push(~27);
|
|
|
|
assert heap.len() == 6;
|
|
|
|
assert *heap.top() == ~27;
|
|
|
|
heap.push(~3);
|
|
|
|
assert heap.len() == 7;
|
|
|
|
assert *heap.top() == ~27;
|
|
|
|
heap.push(~103);
|
|
|
|
assert heap.len() == 8;
|
|
|
|
assert *heap.top() == ~103;
|
|
|
|
}
|
|
|
|
|
2012-12-09 19:02:33 -06:00
|
|
|
#[test]
|
|
|
|
fn test_push_pop() {
|
|
|
|
let mut heap = from_vec(~[5, 5, 2, 1, 3]);
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert heap.push_pop(6) == 6;
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert heap.push_pop(0) == 5;
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert heap.push_pop(4) == 5;
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert heap.push_pop(1) == 4;
|
|
|
|
assert heap.len() == 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_replace() {
|
|
|
|
let mut heap = from_vec(~[5, 5, 2, 1, 3]);
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert heap.replace(6) == 5;
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert heap.replace(0) == 6;
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert heap.replace(4) == 5;
|
|
|
|
assert heap.len() == 5;
|
|
|
|
assert heap.replace(1) == 4;
|
|
|
|
assert heap.len() == 5;
|
|
|
|
}
|
|
|
|
|
2012-12-11 09:57:37 -06:00
|
|
|
fn check_to_vec(data: ~[int]) {
|
|
|
|
let heap = from_vec(data);
|
|
|
|
assert merge_sort(heap.to_vec(), le) == merge_sort(data, le);
|
|
|
|
assert heap.to_sorted_vec() == merge_sort(data, le);
|
|
|
|
}
|
|
|
|
|
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]
|
2012-12-16 21:41:07 -06:00
|
|
|
#[ignore(cfg(windows))]
|
2012-12-09 19:02:33 -06:00
|
|
|
fn test_empty_pop() { let mut heap = from_vec::<int>(~[]); heap.pop(); }
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty_maybe_pop() {
|
|
|
|
let mut heap = from_vec::<int>(~[]);
|
|
|
|
assert heap.maybe_pop().is_none();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2012-12-16 21:41:07 -06:00
|
|
|
#[ignore(cfg(windows))]
|
2012-12-11 11:19:20 -06:00
|
|
|
fn test_empty_top() { let empty = from_vec::<int>(~[]); empty.top(); }
|
2012-12-09 19:02:33 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty_maybe_top() {
|
2012-12-11 11:19:20 -06:00
|
|
|
let empty = from_vec::<int>(~[]);
|
|
|
|
assert empty.maybe_top().is_none();
|
2012-12-09 19:02:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2012-12-16 21:41:07 -06:00
|
|
|
#[ignore(cfg(windows))]
|
2012-12-09 19:02:33 -06:00
|
|
|
fn test_empty_replace() {
|
|
|
|
let mut heap = from_vec::<int>(~[]);
|
|
|
|
heap.replace(5);
|
|
|
|
}
|
|
|
|
}
|