class IntervalSkipList
def next_node_height
def next_node_height height = 1 while rand < probability && height < max_height height += 1 end height end
def next_node_height height = 1 while rand < probability && height < max_height height += 1 end height end