private int balance(AVLNode rootLeft, AVLNode rootRight) { return(height(rootLeft) - height(rootRight)); }