package traverse;
interface Stack<T> {
public void push(T top);
public T pop() throws EmptyStructure;
public boolean isEmpty() ;
}