test: Fix tests.
This commit is contained in:
parent
e20549ff19
commit
2dbb3c3887
36 changed files with 217 additions and 243 deletions
|
@ -12,13 +12,14 @@
|
|||
|
||||
#[allow(missing_doc)];
|
||||
|
||||
|
||||
use std::clone::Clone;
|
||||
use std::unstable::intrinsics::{move_val_init, init};
|
||||
use std::util::{replace, swap};
|
||||
use std::vec;
|
||||
use std::iterator::FromIterator;
|
||||
|
||||
/// A priority queue implemented with a binary heap
|
||||
#[deriving(Clone)]
|
||||
pub struct PriorityQueue<T> {
|
||||
priv data: ~[T],
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue