how can i implement circular queue using stack?
How can i implement circular queue using stack?
@Vipin_coder,
First think about how to implement circular queue using queue (Like the enqueue and dequeue operation in circular queue using queue). And then implement queue using stack on the queue.