private T FindMin()
 {
     return(this.LeftNode != null
         ? LeftNode.FindMin()
         : Element);
 }