public AvlNode <T> GetNodeAt(int index)
 {
     if (index < _left._count)
     {
         return(_left.GetNodeAt(index));
     }
     if (index > _left._count)
     {
         return(_right.GetNodeAt(index - _left._count - 1));
     }
     return(this);
 }