Queue Data Structure
Queue Data Structure
In this tutorial, you will learn what a queue is. Also, you will find
implementation of queue in C, C++, Java and Python.
Queue follows the First In First Out (FIFO) rule - the item that goes in first
is the item that comes out first.
In the above image, since 1 was kept in the queue before 2, it is the first to
be removed from the queue as well. It follows the FIFO rule.
In programming terms, putting items in the queue is called enqueue, and
removing items from the queue is called dequeue.
We can implement the queue in any programming language like C, C++,
Java, Python or C#, but the specification is pretty much the same.
Working of Queue
Queue operations work as follows:
Enqueue Operation
Dequeue Operation
class Queue:
def __init__(self):
self.queue = []
# Add an element
def enqueue(self, item):
self.queue.append(item)
# Remove an element
def dequeue(self):
if len(self.queue) < 1:
return None
return self.queue.pop(0)
def size(self):
return len(self.queue)
q = Queue()
q.enqueue(1)
q.enqueue(2)
q.enqueue(3)
q.enqueue(4)
q.enqueue(5)
q.display()
q.dequeue()
Limitations of Queue
As you can see in the image below, after a bit of enqueuing and dequeuing,
the size of the queue has been reduced.
Limitation of a queue
And we can only add indexes 0 and 1 only when the queue is reset (when
all the elements have been dequeued).
After REAR reaches the last index, if we can store extra elements in the
empty spaces (0 and 1), we can make use of the empty spaces. This is
implemented by a modified queue called the circular queue.
Complexity Analysis
The complexity of enqueue and dequeue operations in a queue using an
array is O(1) . If you use pop(N) in python code, then the complexity might
be O(n) depending on the position of the item to be popped.
Applications of Queue
CPU scheduling, Disk Scheduling
Call Center phone systems use Queues to hold people calling them in
order.
Types of Queues
In this tutorial, you will learn different types of queues with along with
illustration.
Simple Queue
Circular Queue
Priority Queue
Circular Queue
In a circular queue, the last element points to the first element making a
circular link.
Circular Queue
Representation
The main advantage of a circular queue over a simple queue is better
memory utilization. If the last position is full and the first position is empty,
we can insert an element in the first position. This action is not possible in a
simple queue.
Priority Queue
Representation
Insertion occurs based on the arrival of the values and removal occurs
based on priority.
Deque Representation