Example #1
0
 // конструктор
 public AVLTreeNode(TNode value, AVLTreeNode <TNode> parent)
 {
     Value  = value;
     Parent = parent;
 }