Пример #1
0
 private void DeleteTree(AVLNode root)
 {
 }
Пример #2
0
 public AVLTree()
 {
     root = null;
 }
Пример #3
0
 private void DoubleRotationRight(ref AVLNode a)
 {
     RotateLeft(ref a.left);
     RotateRight(ref a);
 }