What is a queue?
A first in first out (FIFO) data structure where the first item added/pushed is the first item to be removed/popped off
What is a queue overflow? ⚠️
A queue overflow is an attempt to enqueue and item onto a full queue
What is a queue underflow?⚠️
A queue underflow is an attempt to dequeue an item onto a empty queue
What are some uses of queues?
1.
2.
3.