1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
/* The Computer Language Shootout
http://shootout.alioth.debian.org/
contributed by Kannan Goundan
modified by Isaac Gouy
*/
object binarytrees {
def main(args: Array[String]) = {
val n = try { Integer.parseInt(args(0)) } catch { case _ => 1 }
val minDepth = 4
val maxDepth = Math.max(minDepth+2,n)
print("stretch tree", maxDepth+1, new Tree(0,maxDepth+1).isum)
val longLivedTree = new Tree(0,maxDepth)
var depth = minDepth
while (depth <= maxDepth) {
val iterations = 1 << (maxDepth - depth + minDepth)
var sum = 0
var i = 1
while (i <= iterations) {
sum = sum + new Tree(i,depth).isum + new Tree(-i,depth).isum
i = i + 1
}
print(iterations*2 + "\t trees", depth, sum)
depth = depth + 2
}
print("long lived tree", maxDepth, longLivedTree.isum)
}
def print(name: String, depth: Int, check: Int) =
Console.println(name + " of depth " + depth + "\t check: " + check)
}
final class Tree(_i: Int, _left: Tree, _right: Tree) {
private val i = _i
private var left = _left
private var right = _right
def this(i: Int, depth: Int) = {
this(i, null, null)
if (depth > 0){
left = new Tree((2*i)-1, depth-1)
right = new Tree(2*i, depth-1)
}
}
def isum(): Int = i + (if (left == null) 0 else left.isum - right.isum)
}
|