CSC220 Lab Number 5
Due: 11:59PM, Tuesday, October 13

Your task is to write an internface for a queue and a class that implements the interface using an array.

Call the interface QueueInt. It has to have generic specification in the declaration, that is, QueueInt < E >. The file name does not need to have such specification.

Design a class MyQueue that implements the interface using an array. Here are a few things you have be careful about:

Add to the class MyQueue a main method for testing whether the required methods are properly functioning.