Advertisement
gabuwu

TP04-EJ4-G3.3-ILinkedList

Oct 27th, 2021
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package TP4;
  2.  
  3.  
  4.     public interface ILinkedList<ELEMENT> extends Iterable<ELEMENT> {
  5.          
  6.         // Returns the number of elements in this list.
  7.         public int size();
  8.      
  9.         // Appends the specified element to the end of this list.
  10.         public void addLast(ELEMENT item);
  11.        
  12.      
  13.     }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement