private int GetBalance(AVLTreeNode <T> root) { return(GetHeight(root.RightChild) - GetHeight(root.LeftChild)); }