package traverse;
interface Queue<T> {
public void add(T obj);
public T remove() throws EmptyStructure;
public boolean isEmpty() ;
}