×

Queue implementation in C

In the C programming language, the queue is the abstract concept that is similar to stacks. However, it is the part of the data structures that work opposite to that of what stack does. A queue works in both ways; that is, it is open at both ends. One of the ends is always used to insert the data, and the other is used to remove the data. The end which is used to insert the data element is referred to as ‘en queue’, while the other, which is used to remove the data element, is termed as ‘de queue’.

Queue concept in the data structure follows the principle of First In First Out (FIFO) or Last In Last Out (LILO), i.e., the data element to be stored first is the first one to be accessed; on the other hand, the stack concept follows the principle of First In Last Out (FILO) or Last In First Out (LIFO).

Queues are followed in the real world, where a single lane one way road is present and the vehicle to enter first is the first one to be moved out from it. Similarly, the queues can be observed at ticket windows, and bus stops, and so on.

Basic operations in the queue:

Queue operations incur the initializing, defining, utilizing, and erasing it from the memory location permanently.

  • Enqueue (): enqueue lets the compiler add or store a data element into the queue.
  • Dequeue (): dequeue lets the compiler remove or access a data element from the queue.
  • Peek (): peek will let the programmer check the element at the front of the queue without removing or accessing it.
  • isfull(): isfull, as the name suggests, will let the compiler check if the queue is full or not.
  • isempty(): isempty, as the name suggests, will let the compiler check if the queue is empty or not.

In the queue, we always dequeue (or access) data, pointed by the front pointer, and while enqueuing (or storing) data in the queue, we take the help of the rear pointer.

E.g.:

#include <stdio.h>
#include<stdlib.h>
#define MAX 50
void insert();
void delete();
void display();
int queue_array[MAX];
int rear = - 1;
int front = - 1;
int main()
{
int choice;
while (1)
{
printf("1.Insert element to queue \n");
printf("2.Delete element from queue \n");
printf("3.Display all elements of queue \n");
printf("4.Quit \n");
printf("Enter your choice : ");
scanf("%d", &choice);
switch(choice)
{
case 1: insert();
break;
case 2: delete();
break;
case 3: display();
break;
case 4: exit(1);
default: printf("Wrong choice \n");
}
}
}


void insert()
{
int item;
if(rear == MAX - 1)
printf("Queue Overflow \n");
else
{
if(front== - 1)
front = 0;
printf("Inset the element in queue : ");
scanf("%d", &item);
rear = rear + 1;
queue_array[rear] = item;
}
}


void delete()
{
if(front == - 1 || front > rear)
{
printf("Queue Underflow \n");
Return;
}
else
{
printf("Element deleted from queue is : %d \n", queue_array[front]);
front = front + 1;
}
}


void display()
{
int i;
if(front == - 1)
printf("Queue is empty \n");
else
{
printf("Queue is : \n");
for(i = front; i <= rear; i++)
printf("%d ", queue_array[i]);
printf("n");
}
}

Output:

1.Insert an element to the queue 
2.Delete an element from the queue 
3.Display all elements of the queue 
4.Quit 
Enter your choice: 1
Insert an element to the queue: 3


1.Insert an element to the queue 
2.Delete an element from the queue 
3.Display all elements of the queue 
4.Quit 
Enter your choice: 1
Insert an element to the queue: 5


1.Insert an element to the queue 
2.Delete an element from the queue 
3.Display all elements of the queue 
4.Quit 
Enter your choice: 1
Insert an element to the queue: 2


1.Insert an element to the queue 
2.Delete an element from the queue 
3.Display all elements of the queue 
4.Quit 
Enter your choice: 3 
Display all elements of the queue: 2  5  3


1.Insert an element to the queue 
2.Delete an element from the queue 
3.Display all elements of the queue 
4.Quit 
Enter your choice: 2
Item deleted: 3


1.Insert an element to the queue 
2.Delete an element from the queue 
3.Display all elements of the queue 
4.Quit 
Enter your choice: 2
Item deleted: 5


1.Insert an element to the queue 
2.Delete an element from the queue 
3.Display all elements of the queue 
4.Quit 
Enter your choice: 3 
Display all elements of the queue: 2 

This code is a menu-driven implementation of a queue. First, define the size of the MAX variable to be 50. Then, the array called queue_array is declared of size MAX. Three functions are to be declared. The functions are, insert, display and delete functions. A menu-driven main function is used. The user is asked to enter his choice and call the appropriate function to perform the task.

There are pointers, the front is at the front of the queue, and the rear is at the back of the queue. We add elements from the back of the queue and remove them from the front of the queue.

Time complexity: O(1) is the complexity in all the cases.

Auxiliary space: O(N) where N is the size of the array to store the data elements.

Advantages:   

  1. Easy to implement.

Disadvantages: 

  1. Static Data Structure, fixed size.
  2. If the queue has a large number of enqueue and dequeue operations, at some point (in case of linear increment of front and rear indexes), we may not be able to insert elements in the queue even if the queue is empty (this problem is avoided by using circular queue).

Related Topics

Consumer billing system in C

Introduction : Billing has always been taught to do perfectly, we know today's world is full of products, and We all are using multiple products. We are buying and selling various...

9 minutes read.

Random function in C

Random function in C In the C programming language, the rand() is a function used for Pseudo Random Number Generator (PRNG). The random number generated by the rand() function is not...

4 minutes read.

Conditional Operator in C

In C programming language, the conditional operator (also known as the ternary operator) is a shorthand way of writing an if-else statement. The syntax of conditional operator in C is...

3 minutes read.

String in C

String is a collection of character or group of characters. In array, string of character is terminated by a null value “\0” and enclose between double quote. We can declare...

2 minutes read.

Control statement in C

What is a control statement? A control statement helps us to control the flow of the program. The control statement helps us to execute the program's instructions in a user-defined order....

8 minutes read.

How to use atoi() function in C

Introduction: The atoi() is a function used in C programming language. This function converts string characters to the integer value. The atoi() function converts the input string to the return type of...

4 minutes read.

Type Conversion in the C

The process of changing one data type to another in the C programming language is known as "type conversion." The type conversion method is only executed on data types that...

4 minutes read.

Conio.h in C

Header files are the source files with the extension of .h. In c language header files are referred to as the helping files and they contain definitions of various functions...

4 minutes read.

Fseek Function in C

The fseek function is a function in the C standard library that changes the position of the file pointer in a stream-oriented file. It is typically used to move the...

3 minutes read.

fork() in C

Introduction To create a new function in the system, there is a need for a system call, i.e. fork system call. It is also known as the child process. These child...

2 minutes read.

Double Specifier in C

What is a double specifier? The term double denotes the double data type in C. It more accurately depicts floating point numbers. The idea that it has twice the precision of...

3 minutes read.

Evaluation of Arithmetic Expression in C

We can use the "eval" function in C to evaluate an arithmetic expression stored as a string. However, using "eval" is generally considered bad practice and can lead to security...

4 minutes read.

Associativity of Operators in C

What is an Associativity operator? Two operators with equal priority are connected by employing their association when they are present in an expression. There are two different types of associativity: left to rightright...

4 minutes read.

Bubble sort in C

Bubble sort in C Bubble sort is defined as the algorithm that is used for the sorting mechanism. It follows the technique of replacing the first index with the more minor...

4 minutes read.

C program to Store Information of Students Using Structure

What is the Structure in C? User-defined data types include structures. Structures aid your ability to combine things of various categories into a single group. Like arrays, it operates similarly. A...

3 minutes read.

Sum of N numbers in C using For loop

Before we move on the program of sum of N numbers, first we have to know about the For Loop statement. The syntax of ‘for’ loop in C programming language is...

3 minutes read.

Compilation Process in C language

What is the Compilation Process?  The compilation is a method whereby the source code is converted into object code. It is achieved with compiler assistance. The compiler tests the source code for syntactic...

3 minutes read.

How to find square root in C Language

Before understanding the square root program in C language, one must know about the square root of a number. A square root is a mathematical term. The square root of a...

5 minutes read.

Continue in C

C language: C language is a procedure oriented programming language. We can say that it is a platform dependent language. C language is introduced by Dennis Ritchie in the year 1970. We...

2 minutes read.

Kruskal algorithm in C

Given a weighted graph, Kruskal's algorithm generates a spanning tree with the lowest possible weights. Start by creating an edge list for the given graph, including the weights. Sort the...

3 minutes read.