Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package TP4;
- public interface ILinkedList<ELEMENT> extends Iterable<ELEMENT> {
- // Returns the number of elements in this list.
- public int size();
- // Appends the specified element to the end of this list.
- public void addLast(ELEMENT item);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement