queue method

* create
    * create: 
* add
    * push: Adds the element at the top of the queue.
* change (N/A)
* query
    * empty: Returns whether the queue is empty.
    * size: Returns the size of the queue.
    * front: Returns the first element of the queue.
    * back: Return the last element of the queue.
* delete 
    * pop: Deletes the top most element of the queue.