public int getMin() {
   if (left == null) {
     return this.value;
   } else return left.getMin();
 }