Guest User

Untitled

a guest
Nov 23rd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. package ke02;
  2.  
  3. public interface LinkedList<T> {
  4.  
  5. public void addFirst(T e);
  6.  
  7. public T removeFirst();
  8.  
  9. public boolean isEmpty();
  10.  
  11. public void display();
  12.  
  13. public boolean contains(T e);
  14.  
  15. public T remove(T e);
  16.  
  17. public T remove(int index);
  18.  
  19. }
Add Comment
Please, Sign In to add comment