public interface Pile { public E getFirst(); public E pollFirst(); public void addFirst(E e); public int size(); }