rust/src/test/bench/core-map.rs

173 lines
3.9 KiB
Rust
Raw Normal View History

// 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.
extern mod extra;
use extra::time;
use extra::treemap::TreeMap;
use std::hashmap::{HashMap, HashSet};
use std::os;
use std::rand::{Rng, IsaacRng, SeedableRng};
use std::trie::TrieMap;
use std::uint;
use std::vec;
fn timed(label: &str, f: &fn()) {
let start = time::precise_time_s();
f();
let end = time::precise_time_s();
println!(" {}: {}", label, end - start);
}
2013-07-13 22:30:05 -05:00
fn ascending<M: MutableMap<uint, uint>>(map: &mut M, n_keys: uint) {
println(" Ascending integers:");
do timed("insert") {
for i in range(0u, n_keys) {
map.insert(i, i + 1);
}
}
do timed("search") {
for i in range(0u, n_keys) {
assert_eq!(map.find(&i).unwrap(), &(i + 1));
}
}
do timed("remove") {
for i in range(0, n_keys) {
2013-03-28 20:39:09 -05:00
assert!(map.remove(&i));
}
}
}
2013-07-13 22:30:05 -05:00
fn descending<M: MutableMap<uint, uint>>(map: &mut M, n_keys: uint) {
println(" Descending integers:");
do timed("insert") {
for i in range(0, n_keys).invert() {
map.insert(i, i + 1);
}
}
do timed("search") {
for i in range(0, n_keys).invert() {
assert_eq!(map.find(&i).unwrap(), &(i + 1));
}
}
do timed("remove") {
for i in range(0, n_keys) {
2013-03-28 20:39:09 -05:00
assert!(map.remove(&i));
}
}
}
2013-07-13 22:30:05 -05:00
fn vector<M: MutableMap<uint, uint>>(map: &mut M, n_keys: uint, dist: &[uint]) {
2013-01-23 18:51:49 -06:00
do timed("insert") {
for i in range(0u, n_keys) {
map.insert(dist[i], i + 1);
2013-01-23 18:51:49 -06:00
}
}
do timed("search") {
for i in range(0u, n_keys) {
assert_eq!(map.find(&dist[i]).unwrap(), &(i + 1));
2013-01-23 18:51:49 -06:00
}
}
do timed("remove") {
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
}
}
}
fn main() {
let args = os::args();
let n_keys = {
if args.len() == 2 {
from_str::<uint>(args[1]).unwrap()
} else {
1000000
2013-01-23 18:51:49 -06:00
}
};
2013-01-23 18:51:49 -06:00
let mut rand = vec::with_capacity(n_keys);
2013-01-23 18:51:49 -06:00
{
let mut rng: IsaacRng = SeedableRng::from_seed(&[1, 1, 1, 1, 1, 1, 1]);
let mut set = HashSet::new();
while set.len() != n_keys {
let next = rng.gen();
if set.insert(next) {
rand.push(next);
2013-01-23 18:51:49 -06:00
}
}
}
println!("{} keys", n_keys);
2013-01-23 18:51:49 -06:00
println("\nTreeMap:");
2013-01-23 18:51:49 -06:00
{
2013-08-27 20:45:13 -05:00
let mut map: TreeMap<uint,uint> = TreeMap::new();
ascending(&mut map, n_keys);
2013-01-23 18:51:49 -06:00
}
{
2013-08-27 20:45:13 -05:00
let mut map: TreeMap<uint,uint> = TreeMap::new();
descending(&mut map, n_keys);
2013-01-23 18:51:49 -06:00
}
{
println(" Random integers:");
2013-08-27 20:45:13 -05:00
let mut map: TreeMap<uint,uint> = TreeMap::new();
vector(&mut map, n_keys, rand);
2013-01-23 18:51:49 -06:00
}
println("\nHashMap:");
2013-01-23 18:51:49 -06:00
{
2013-08-27 20:45:13 -05:00
let mut map: HashMap<uint,uint> = HashMap::new();
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();
descending(&mut map, n_keys);
2013-01-23 18:51:49 -06:00
}
{
println(" Random integers:");
2013-08-27 20:45:13 -05:00
let mut map: HashMap<uint,uint> = HashMap::new();
vector(&mut map, n_keys, rand);
}
println("\nTrieMap:");
{
2013-08-27 20:45:13 -05:00
let mut map: TrieMap<uint> = TrieMap::new();
ascending(&mut map, n_keys);
2013-01-23 18:51:49 -06:00
}
{
2013-08-27 20:45:13 -05:00
let mut map: TrieMap<uint> = TrieMap::new();
descending(&mut map, n_keys);
}
{
println(" Random integers:");
2013-08-27 20:45:13 -05:00
let mut map: TrieMap<uint> = TrieMap::new();
vector(&mut map, n_keys, rand);
}
2012-12-28 21:57:18 -06:00
}