Esempio n. 1
0
 public T Max()
 {
     if (_root == null)
     {
         throw new InvalidOperationException(message: "Empty tree.");
     }
     return(_root.Max());
 }