Queue Data Structure and Implementation in Java
Queue Data Structure and Implementation in Java
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.
Peek: Get the value of the front of the queue without removing it
Working of Queue
Queue operations work as follows:
Enqueue Operation
Dequeue Operation
check if the queue is empty
for the last element, reset the values of FRONT and REAR to -1
Enqueue and Dequeue Operations
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)
Limitations of Queue
As you can see in the image below, a"er 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).
A"er 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 (/data-
structures/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.
Recommended Readings
Next Tutorial:
(/dsa/types-of-queue)
Types of Queue
Previous Tutorial:
(/dsa/stack)
Stack
Share on:
(h!ps://www.facebook.com/sharer/sharer.php? (h!ps://twi!er.com/intent/twee
u=h!ps://www.programiz.com/dsa/queue) text=Check%20this%20amazing
DS & Algorithms
(/dsa/circular-queue)
DS & Algorithms
Types of Queues
(/dsa/types-of-queue)
DS & Algorithms
(/dsa/deque)
DS & Algorithms
(/dsa/graph-bfs)