def __init__(self): BST.__init__(self)
def __init__(self): BST.__init__(self) self._utils = TreapUtils()
def __init__(self, key_list=[]): """Create a new AVL Tree, set its attributes, and insert all the keys in the key_list into the AVL.""" BST.__init__(self, key_list)
def __init__(self, wait_time=300000, simple=False): BST.__init__(self) self.wait_time = wait_time self.simple = simple
def __init__(self): self._level = 0 # 1 at leaves, depth at head, 0 for empty tree BST.__init__(self)
def __init__(self, node_class=AVLNode): BST.__init__(self, node_class)
def __init__(self): self.parent = None self.color = BLACK BST.__init__(self)
def __init__(self, li=None): BST.__init__(self, li)