Merge pull request #20887 from TeXitoi/improve-shootout-binarytrees

Improvement of shootout-binarytrees.rs

Reviewed-by: alexcrichton
This commit is contained in:
bors 2015-01-10 23:40:20 +00:00
commit 431105a70a
1 changed files with 21 additions and 17 deletions

View File

@ -44,26 +44,30 @@ use std::iter::range_step;
use std::thread::Thread;
use arena::TypedArena;
enum Tree<'a> {
Nil,
Node(&'a Tree<'a>, &'a Tree<'a>, int)
struct Tree<'a> {
l: Option<&'a Tree<'a>>,
r: Option<&'a Tree<'a>>,
i: i32
}
fn item_check(t: &Tree) -> int {
fn item_check(t: &Option<&Tree>) -> i32 {
match *t {
Tree::Nil => 0,
Tree::Node(l, r, i) => i + item_check(l) - item_check(r)
None => 0,
Some(&Tree { ref l, ref r, i }) => i + item_check(l) - item_check(r)
}
}
fn bottom_up_tree<'r>(arena: &'r TypedArena<Tree<'r>>, item: int, depth: int)
-> &'r Tree<'r> {
fn bottom_up_tree<'r>(arena: &'r TypedArena<Tree<'r>>, item: i32, depth: i32)
-> Option<&'r Tree<'r>> {
if depth > 0 {
arena.alloc(Tree::Node(bottom_up_tree(arena, 2 * item - 1, depth - 1),
bottom_up_tree(arena, 2 * item, depth - 1),
item))
let t: &Tree<'r> = arena.alloc(Tree {
l: bottom_up_tree(arena, 2 * item - 1, depth - 1),
r: bottom_up_tree(arena, 2 * item, depth - 1),
i: item
});
Some(t)
} else {
arena.alloc(Tree::Nil)
None
}
}
@ -86,7 +90,7 @@ fn main() {
let tree = bottom_up_tree(&arena, 0, depth);
println!("stretch tree of depth {}\t check: {}",
depth, item_check(tree));
depth, item_check(&tree));
}
let long_lived_arena = TypedArena::new();
@ -94,14 +98,14 @@ fn main() {
let messages = range_step(min_depth, max_depth + 1, 2).map(|depth| {
use std::num::Int;
let iterations = 2i.pow((max_depth - depth + min_depth) as uint);
let iterations = 2.pow((max_depth - depth + min_depth) as usize);
Thread::scoped(move|| {
let mut chk = 0;
for i in range(1, iterations + 1) {
for i in 1 .. iterations + 1 {
let arena = TypedArena::new();
let a = bottom_up_tree(&arena, i, depth);
let b = bottom_up_tree(&arena, -i, depth);
chk += item_check(a) + item_check(b);
chk += item_check(&a) + item_check(&b);
}
format!("{}\t trees of depth {}\t check: {}",
iterations * 2, depth, chk)
@ -113,5 +117,5 @@ fn main() {
}
println!("long lived tree of depth {}\t check: {}",
max_depth, item_check(long_lived_tree));
max_depth, item_check(&long_lived_tree));
}