public boolean empty() { if (imp.size() != 0) { return false; } else { return true; } }
public int size() { int size = imp.size(); return size; }
public void enq(String newVal) { int length = imp.size(); imp.ins(newVal, length); }