Implement a queue
文章目录
A queue is based on the Linked List. The most explicit feature of a queue is FIFO(First in first out).
Here is the specification of my Queue.
Queue(), Create an empty queue.Queue(const T& value), Create a queue whose first element isvalue.Queue(const T values[], const size_t& size), Create a queue from an arrayvalueswhose size issize.Queue(const Queue<T>& queue), Create a queue from another queue.const Queue<T>& operator=(const Queue<T>& queue), Support queue assignment.~Queue(), Free all the spaces allocated by the queue.std::ostream& operator<<(std::ostream& os, const Queue<T>& queue), Output the queue in the form [1 | 2 | 3].const T& head() const, return the head element of the queue.size_t size() const, return the size of the queue.void enQueue(const T& value), append the elementvalueinto the back of the queue.const T deQueue(), remove and return the first element of the queue.
Here is the code.