package traverse;
interface Structure<T> {
public void put(T item);
public T get() throws EmptyStructure;
public boolean isEmpty() ;
}