class documentation
class _Node(TreeMap._Node):
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 |
Undocumented |
| Method | right |
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 |