Guest User

Untitled

a guest
Jan 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. private boolean isMax = false;
  2.  
  3. public K max() throws EmptyTreeException {
  4. if(right.toString()!=""){
  5. return right.max();
  6. }
  7. else
  8. this.isMax = true;
  9. return this.key;
  10. }
Add Comment
Please, Sign In to add comment