C++ - deals with list
Assginment given:
Consider a slight variation of the pointer-based implementation of the queue ADT. In this variation, the queue uses a circular linked list to represent the items in the queue. You must use only a single tail pointer. Construct the implementation of such queue ADT.
Your program should display the following menu to demonstrate the operations on queue objects for test run.
(1) Create queue object
(2) Enqueue
(3) Dequeue
(4) Display
(5) Exit
-------------------------------------------------------------------------
I think Question is rather vague please give me some suggestions on how u can do this..
thanks!