2013-03-21 14:21:06 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 19:32:48 -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.
|
|
|
|
|
2014-12-08 07:35:34 -06:00
|
|
|
#![feature(unboxed_closures)]
|
|
|
|
|
2014-12-16 22:09:16 -06:00
|
|
|
use std::collections::{BTreeMap, HashMap, HashSet};
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::os;
|
2014-05-29 21:03:06 -05:00
|
|
|
use std::rand::{Rng, IsaacRng, SeedableRng};
|
2014-11-10 14:27:56 -06:00
|
|
|
use std::time::Duration;
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::uint;
|
2013-03-21 14:21:06 -05:00
|
|
|
|
2014-12-08 07:35:34 -06:00
|
|
|
fn timed<F>(label: &str, f: F) where F: FnMut() {
|
2014-11-10 14:27:56 -06:00
|
|
|
println!(" {}: {}", label, Duration::span(f));
|
2012-08-21 17:55:17 -05:00
|
|
|
}
|
|
|
|
|
2014-10-30 15:43:24 -05:00
|
|
|
trait MutableMap {
|
|
|
|
fn insert(&mut self, k: uint, v: uint);
|
|
|
|
fn remove(&mut self, k: &uint) -> bool;
|
|
|
|
fn find(&self, k: &uint) -> Option<&uint>;
|
|
|
|
}
|
|
|
|
|
2014-12-16 22:09:16 -06:00
|
|
|
impl MutableMap for BTreeMap<uint, uint> {
|
2014-10-30 15:43:24 -05:00
|
|
|
fn insert(&mut self, k: uint, v: uint) { self.insert(k, v); }
|
2014-11-06 11:25:16 -06:00
|
|
|
fn remove(&mut self, k: &uint) -> bool { self.remove(k).is_some() }
|
|
|
|
fn find(&self, k: &uint) -> Option<&uint> { self.get(k) }
|
2014-10-30 15:43:24 -05:00
|
|
|
}
|
|
|
|
impl MutableMap for HashMap<uint, uint> {
|
|
|
|
fn insert(&mut self, k: uint, v: uint) { self.insert(k, v); }
|
2014-11-06 11:25:16 -06:00
|
|
|
fn remove(&mut self, k: &uint) -> bool { self.remove(k).is_some() }
|
|
|
|
fn find(&self, k: &uint) -> Option<&uint> { self.get(k) }
|
2014-10-30 15:43:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn ascending<M: MutableMap>(map: &mut M, n_keys: uint) {
|
2014-01-09 04:06:55 -06:00
|
|
|
println!(" Ascending integers:");
|
2012-08-21 17:55:17 -05:00
|
|
|
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("insert", || {
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in range(0u, n_keys) {
|
2013-03-21 14:21:06 -05:00
|
|
|
map.insert(i, i + 1);
|
2012-08-21 17:55:17 -05:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2012-08-21 17:55:17 -05:00
|
|
|
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("search", || {
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in range(0u, n_keys) {
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(map.find(&i).unwrap(), &(i + 1));
|
2012-08-21 17:55:17 -05:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2012-08-21 17:55:17 -05:00
|
|
|
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("remove", || {
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in range(0, n_keys) {
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(map.remove(&i));
|
2012-08-21 17:55:17 -05:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2012-08-21 17:55:17 -05:00
|
|
|
}
|
|
|
|
|
2014-10-30 15:43:24 -05:00
|
|
|
fn descending<M: MutableMap>(map: &mut M, n_keys: uint) {
|
2014-01-09 04:06:55 -06:00
|
|
|
println!(" Descending integers:");
|
2012-08-21 17:55:17 -05:00
|
|
|
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("insert", || {
|
2014-01-23 13:41:57 -06:00
|
|
|
for i in range(0, n_keys).rev() {
|
2013-03-21 14:21:06 -05:00
|
|
|
map.insert(i, i + 1);
|
2013-08-07 00:34:22 -05:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2012-08-21 17:55:17 -05:00
|
|
|
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("search", || {
|
2014-01-23 13:41:57 -06:00
|
|
|
for i in range(0, n_keys).rev() {
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(map.find(&i).unwrap(), &(i + 1));
|
2013-08-07 00:34:22 -05:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2012-08-21 17:55:17 -05:00
|
|
|
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("remove", || {
|
2013-08-07 00:34:22 -05:00
|
|
|
for i in range(0, n_keys) {
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(map.remove(&i));
|
2013-08-07 00:34:22 -05:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2012-08-21 17:55:17 -05:00
|
|
|
}
|
|
|
|
|
2014-10-30 15:43:24 -05:00
|
|
|
fn vector<M: MutableMap>(map: &mut M, n_keys: uint, dist: &[uint]) {
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("insert", || {
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in range(0u, n_keys) {
|
2013-03-21 14:21:06 -05:00
|
|
|
map.insert(dist[i], i + 1);
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2013-01-23 18:51:49 -06:00
|
|
|
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("search", || {
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in range(0u, n_keys) {
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(map.find(&dist[i]).unwrap(), &(i + 1));
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2013-01-23 18:51:49 -06:00
|
|
|
|
2013-11-21 21:20:48 -06:00
|
|
|
timed("remove", || {
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in range(0u, n_keys) {
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(map.remove(&dist[i]));
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
2013-11-21 21:20:48 -06:00
|
|
|
});
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
|
|
|
|
2013-03-21 14:21:06 -05:00
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
2014-05-05 02:29:59 -05:00
|
|
|
let args = args.as_slice();
|
2013-03-21 14:21:06 -05:00
|
|
|
let n_keys = {
|
|
|
|
if args.len() == 2 {
|
2015-01-02 01:53:35 -06:00
|
|
|
args[1].parse::<uint>().unwrap()
|
2013-03-21 14:21:06 -05:00
|
|
|
} else {
|
|
|
|
1000000
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
2013-03-21 14:21:06 -05:00
|
|
|
};
|
2013-01-23 18:51:49 -06:00
|
|
|
|
2014-04-17 17:59:07 -05:00
|
|
|
let mut rand = Vec::with_capacity(n_keys);
|
2013-01-23 18:51:49 -06:00
|
|
|
|
|
|
|
{
|
2014-08-04 07:19:02 -05:00
|
|
|
let seed: &[_] = &[1, 1, 1, 1, 1, 1, 1];
|
|
|
|
let mut rng: IsaacRng = SeedableRng::from_seed(seed);
|
2013-04-03 08:28:36 -05:00
|
|
|
let mut set = HashSet::new();
|
2013-03-21 14:21:06 -05:00
|
|
|
while set.len() != n_keys {
|
2013-09-21 07:06:50 -05:00
|
|
|
let next = rng.gen();
|
2013-03-21 14:21:06 -05:00
|
|
|
if set.insert(next) {
|
|
|
|
rand.push(next);
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-25 00:16:43 -05:00
|
|
|
println!("{} keys", n_keys);
|
2013-01-23 18:51:49 -06:00
|
|
|
|
2014-01-09 04:06:55 -06:00
|
|
|
// FIXME: #9970
|
2014-12-16 22:09:16 -06:00
|
|
|
println!("{}", "\nBTreeMap:");
|
2013-01-23 18:51:49 -06:00
|
|
|
|
|
|
|
{
|
2014-12-16 22:09:16 -06:00
|
|
|
let mut map: BTreeMap<uint,uint> = BTreeMap::new();
|
2013-03-21 14:21:06 -05:00
|
|
|
ascending(&mut map, n_keys);
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2014-12-16 22:09:16 -06:00
|
|
|
let mut map: BTreeMap<uint,uint> = BTreeMap::new();
|
2013-03-21 14:21:06 -05:00
|
|
|
descending(&mut map, n_keys);
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2014-01-09 04:06:55 -06:00
|
|
|
println!(" Random integers:");
|
2014-12-16 22:09:16 -06:00
|
|
|
let mut map: BTreeMap<uint,uint> = BTreeMap::new();
|
2014-04-17 17:59:07 -05:00
|
|
|
vector(&mut map, n_keys, rand.as_slice());
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
|
|
|
|
2014-01-09 04:06:55 -06:00
|
|
|
// FIXME: #9970
|
|
|
|
println!("{}", "\nHashMap:");
|
2013-03-21 14:21:06 -05:00
|
|
|
|
2013-01-23 18:51:49 -06:00
|
|
|
{
|
2013-08-27 20:45:13 -05:00
|
|
|
let mut map: HashMap<uint,uint> = HashMap::new();
|
2013-03-21 14:21:06 -05:00
|
|
|
ascending(&mut map, n_keys);
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2013-08-27 20:45:13 -05:00
|
|
|
let mut map: HashMap<uint,uint> = HashMap::new();
|
2013-03-21 14:21:06 -05:00
|
|
|
descending(&mut map, n_keys);
|
2013-01-23 18:51:49 -06:00
|
|
|
}
|
2012-08-21 17:55:17 -05:00
|
|
|
|
2013-03-21 14:21:06 -05:00
|
|
|
{
|
2014-01-09 04:06:55 -06:00
|
|
|
println!(" Random integers:");
|
2013-08-27 20:45:13 -05:00
|
|
|
let mut map: HashMap<uint,uint> = HashMap::new();
|
2014-04-17 17:59:07 -05:00
|
|
|
vector(&mut map, n_keys, rand.as_slice());
|
2012-08-21 17:55:17 -05:00
|
|
|
}
|
2012-12-28 21:57:18 -06:00
|
|
|
}
|