Пример #1
0
 private int balance(AVLNode rootLeft, AVLNode rootRight)
 {
     return(height(rootLeft) - height(rootRight));
 }