Guest User

Untitled

a guest
Jun 25th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. else if(current.getLeft() != null && current.getRight() != null) {
  2.                   Object t = max(current.getLeft());
  3.                   current.setValue(t);
  4.                   parent = current;
  5.                   current = current.getLeft();
  6.                   target = t;
  7.                   //delete(current.getLeft(), t);
  8.                }
Add Comment
Please, Sign In to add comment