Advertisement
Smudla

Untitled

Apr 22nd, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1.  public T odeberKoren() throws NoSuchElementException {
  2.     if(koren==null){
  3.         throw new NoSuchElementException();
  4.     }
  5.     if(koren.pravyPotomek==null && koren.levyPotomek==null){
  6.        T OD=koren.data;
  7.        zrus();
  8.        return (T) OD;
  9.     }
  10.     throw new NoSuchElementException();
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement