require './8234tree'

t = TTFTree.new
1.upto 100 do |n|
  puts
  puts t.inspect
  r = rand 1000
  t.insert r, r
end
puts
puts t.inspect
