1.

What is the queue? Mention the various operations performed on the queue.

Answer»

A queue is a non-primitive data structure where an item is inserted at one end and removed from the other end.
The queue(), enqueue(item), dequeue(), is Empty() and size() are the operations that can be performed on queues.



Discussion

No Comment Found