* gc.c: __size__ removed. use the length of __members__ instead.
[ruby-svn.git] / benchmark / bm_so_binary_trees.rb
blob6a264655784c808da50bd4b092c7fdb2d2c90b84
1 # The Computer Language Shootout Benchmarks
2 # http://shootout.alioth.debian.org
4 # contributed by Jesse Millikan
6 # disable output
7 def STDOUT.write_ *args
8 end
10 def item_check(tree)
11  if tree[0] == nil
12   tree[1]
13  else
14   tree[1] + item_check(tree[0]) - item_check(tree[2])
15  end
16 end
18 def bottom_up_tree(item, depth)
19  if depth > 0
20   item_item = 2 * item
21   depth -= 1
22   [bottom_up_tree(item_item - 1, depth), item, bottom_up_tree(item_item, depth)]
23  else
24   [nil, item, nil]
25  end
26 end
28 max_depth = 12 # 16 # ARGV[0].to_i
29 min_depth = 4
31 max_depth = min_depth + 2 if min_depth + 2 > max_depth
33 stretch_depth = max_depth + 1
34 stretch_tree = bottom_up_tree(0, stretch_depth)
36 puts "stretch tree of depth #{stretch_depth}\t check: #{item_check(stretch_tree)}"
37 stretch_tree = nil
39 long_lived_tree = bottom_up_tree(0, max_depth)
41 min_depth.step(max_depth + 1, 2) do |depth|
42  iterations = 2**(max_depth - depth + min_depth)
44  check = 0
46  for i in 1..iterations
47   temp_tree = bottom_up_tree(i, depth)
48   check += item_check(temp_tree)
50   temp_tree = bottom_up_tree(-i, depth)
51   check += item_check(temp_tree)
52  end
54  puts "#{iterations * 2}\t trees of depth #{depth}\t check: #{check}"
55 end
57 puts "long lived tree of depth #{max_depth}\t check: #{item_check(long_lived_tree)}"