struct Node
MyCpp::AvlTree::Node

AVL tree node.

Data fields
Node *topThe parent node.
Node *leftThe left subnode (with a lesser or equal key value).
Node *rightThe right subnode (with a greater or equal key value).
int balanceThe balance of the node. '-1' means that the left subtree is taller than the right one. '1' means that the right subtree is taller than the left one. '0' means that right and left subtrees of this node are equally tall.
T valueThe value associated with this node.