private void LeftRightRotation(AVLTreeNode treeNode) { LeftRotation(treeNode.Left); RightRotation(treeNode); }
public AVLTreeNode(int key, AVLTreeNode parent) { this.Value = key; this.Parent = parent; }
private void RightLeftRotation(AVLTreeNode treeNode) { RightRotation(treeNode.Right); LeftRotation(treeNode); }