public interface LinkedListInterface> { int size(); boolean isEmpty(); E first(); E last(); void addLast(E e); void addFirst(E c); E removeFirst(); E removeLast(); E remove(E e); E find(E e); }