Queue Interface
- Queue is collection of items where items are added to one and removed from the other end in a FIFO fashion.
public void enqueue(object item);
//Post: item is added to the tail
//Post: Front of the Queue is removed
//Post: Object at the front is returned.
// Return true if stack is empty