class documentation

Node class for AVL maintains height value for balancing.

We use convention that a "None" child has height 0, thus a leaf has height 1.

Method __init__ Undocumented
Method left_height Undocumented
Method right_height Undocumented
Class Variable __slots__ Undocumented
Instance Variable _height Undocumented

Inherited from _Node:

Instance Variable _element Undocumented
Instance Variable _left Undocumented
Instance Variable _parent Undocumented
Instance Variable _right Undocumented
def __init__(self, element, parent=None, left=None, right=None):
def left_height(self):

Undocumented

def right_height(self):

Undocumented

_height: int =

Undocumented