public AVLTreeNode(T value, AVLTreeNode <T> parent, AVLTree <T> tree) { Data = value; Parent = parent; Tree = tree; }