class Btree

Balanced binary tree methods

Public Class Methods

new() click to toggle source
# File lib/chart/btree.rb, line 31
def initialize
  @root = nil #no nodes in the tree as yet.
end