Advertisement
andresnogales

ILinkedList.java

Oct 27th, 2021
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. //Grupo 2.3
  2.  
  3. public interface ILinkedList<ELEMENT> extends Iterable<ELEMENT> {
  4.      
  5.     public int size();
  6.  
  7.     public void addFirst(ELEMENT item);
  8.     public void addLast(ELEMENT item);
  9.     public ELEMENT removeFirst();
  10.     public ELEMENT removeLast();
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement