Exemplo n.º 1
0
 private int GetBalance(AVLTreeNode <T> root)
 {
     return(GetHeight(root.RightChild) - GetHeight(root.LeftChild));
 }