Saved Bookmarks
| 1. |
Explain the various operations performed on queue data structure. |
|
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(), isEmpty() and size() are the operations that can be performed on queues.
|
|