class IntervalSkipList

def initialize

def initialize
  @head = HeadNode.new(max_height)
  @ranges = {}
  @probability = 0.5
end