private void DeleteTree(AVLNode root) { }
public AVLTree() { root = null; }
private void DoubleRotationRight(ref AVLNode a) { RotateLeft(ref a.left); RotateRight(ref a); }