Stack e Queue completati, compreso il toString. Versione sia array che lista.

This commit is contained in:
2014-03-24 00:02:12 +01:00
parent e3059ed799
commit d34dd20a9d
8 changed files with 70 additions and 42 deletions

View File

@@ -14,7 +14,6 @@ import exceptions.EmptyQueueException;
public E dequeue () throws EmptyQueueException;
public E front() throws EmptyQueueException;
public boolean isEmpty();
public boolean isFull();
public int size();
}