Introduction to Queue Data Structure
Introduction to Queue Data Structure
What is Queue?
A queue is defined as a linear data structure that is open at both ends and the operations are
performed in First In First Out (FIFO) order.
We define a queue to be a list in which all additions to the list are made at one end, and all
deletions from the list are made at the other end. The element which is first pushed into the order,
the operation is first performed on that.
Characteristics of Queue:
Queue can handle multiple data.
We can access both ends.
They are fast and flexible.
Queue Representation:
Like stacks, Queues can also be represented in an array: In this representation, the Queue is
implemented using the array. Variables used in this case are
Queue: the name of the array storing queue elements.
Front: the index where the first element is stored in the array representing the
queue.
Rear: the index where the last element is stored in an array representing the queue.
Array representation of queue:
#include <bits/stdc++.h>
using namespace std;
struct QNode {
int data;
QNode* next;
QNode(int d)
{
data = d;
next = NULL;
}
};
struct Queue {
QNode *front, *rear;
Queue()
{
front = rear = NULL;
}
};
Types of Queue:
There are different types of queue:
This is a simple queue. In this type of queue, the input can be taken from only one end but
deletion can be done from any of the ends.
This is also a simple queue. In this type of queue, the input can be taken from both ends but
deletion can be done from only one end.
Circular Queue
This is a special type of queue where the last position is connected back to the first position.
Here also the operations are performed in FIFO order.
In a double-ended queue the insertion and deletion operations, both can be performed from
both ends.
Priority Queue
A priority queue is a special queue where the elements are accessed based on the priority
assigned to them.
To learn more about different types of queues, read the article on “Types of Queues“.
Basic Operations of Queue:
There are few supporting operations (auxiliary operations):
front():
This operation returns the element at the front end without removing it.
C++
rear():
This operation returns the element at the rear end without removing it.
isEmpty():
This operation returns a boolean value that indicates whether the queue is empty or not.
isFull():
This operation returns a boolean value that indicates whether the queue is full or not.
Enqueue():
Adds (or stores) an element to the end of the queue.
The following steps should be taken to enqueue (insert) data into a queue:
Step 1: Check if the queue is full.
Step 2: If the queue is full, return overflow error and exit.
Step 3: If the queue is not full, increment the rear pointer to point to the next empty
space.
Step 4: Add the data element to the queue location, where the rear is pointing.
Step 5: return success.
Enqueue representation
Implementation of Enqueue:
Dequeue():
Removes (or access) the first element from the queue.
The following steps are taken to perform the dequeue operation:
Step 1: Check if the queue is empty.
Step 2: If the queue is empty, return the underflow error and exit.
Step 3: If the queue is not empty, access the data where the front is pointing.
Step 4: Increment the front pointer to point to the next available data element.
Step 5: The Return success.
Dequeue operation
Implementation of dequeue:
void queueDequeue()
{
// If queue is empty
if (front == rear) {
printf("\nQueue is empty\n");
return;
}
// decrement rear
rear--;
}
return;
}
Implementation of queue:
Below is an implementation of all the operations used in a queue.
C++
class Queue {
public:
int front, rear, size;
unsigned cap;
int* arr;
};
// Driver code
int main()
{
Queue* queue = createQueue(1000);
enqueue(queue, 10);
enqueue(queue, 20);
enqueue(queue, 30);
enqueue(queue, 40);
cout << dequeue(queue);
cout << " dequeued from queue\n";
cout << "Front item is " << front(queue) << endl;
cout << "Rear item is " << rear(queue);
return 0;
}
Output
10 enqueued to queue
20 enqueued to queue
30 enqueued to queue
40 enqueued to queue
10 dequeued from queue
Front item is 20
Rear item is 40
Time complexity: All the operations have O(1) time complexity.
Auxiliary Space: O(N)
Applications of Queue:
Application of queue is common. In a computer system, there may be queues of tasks waiting
for the printer, for access to disk storage, or even in a time-sharing system, for use of the CPU.
Within a single program, there may be multiple requests to be kept in a queue, or one task may
create other tasks, which must be done in turn by keeping them in a queue.
It has a single resource and multiple consumers.
It synchronizes between slow and fast devices.
In a network, a queue is used in devices such as a router/switch and mail queue.
Variations: dequeue, priority queue and double-ended priority queue.