Description: Storage structure with two sequential stack, two stack through which the relevant operations to achieve the following functions queue. Queue () // constructor bool empty () // Returns whether the queue is empty bool full () // returned to the queue is full int serve () // the queue, return 0 if successful, otherwise-1 int append (const string & item) // item into the queue, return 0 if successful, otherwise returns-1 int retrieve (string & item) const // assign the value of the head of the queue item, return 0 if successful, otherwise-1
To Search:
File list (Check if you may need any files):
Ex2.cpp