×

Doubly Linked list in C

To know the Doubly Linked List in C, first we should know about how the Linked List works.

Linked List

The Linked list is the linear data structure. In the Linked List the elements are stored in the nodes. The Nodes consists of Data part and Address of the next node.

Doubly Linked List in C

In the above diagram shows the representation of the Single Linked list, every node consists of data and address of the next node. The first node in Linked list is referred as the “Head” and Last node is referred as “Tail”. The execution of the Linked List is done by pointers. In Single Linked List, the traversing is done only in forward Direction.

Difference Between Array and Linked List

Array:

In the array, the size of the array should be declared at first so, the array can’t deal with the dynamic programs which are needed to increase or decrease the size according to the problem and inserting the new elements at a position disturbs the locations of other elements. i.e., The Array is used in the static programming.

Linked List:

In the Linked List, the size of the linked list is not declared initially, we can be able to add/ delete elements according to problem. The Insertion of the elements doesn’t disturb the elements location as it is stores as dynamically and linked together with using pointers.

Syntax for declaring a Linked List.

The implementation of Linked list in C programming languages is done by the Structures and Pointers.

struct node
{
int data;
struct *next;
};

In the above code, we have declared a nose using structure and a variable for data and Pointer variable next to store the address of the next Node.

Types of Linked List:

 Four types of Linked Lists are:

  1. Single Linked List.
  2. Doubly Linked List.
  3. Circular single Linked List.
  4. Circular Doubly Linked List.

Doubly Linked List:

 It contains three parts. The first part is the address of previous node, data part and address of next node.

Doubly Linked List in C

In the above diagram shows the representation of the Doubly Linked List. The “previous” part in a node contains the address of the previous node. The “next” part contains the address of the next node.

In the doubly linked list, the traversing can be done by both ways i.e., Forward and Backward.

Syntax

Syntax for declaring a double Linked List:

struct node
{
	struct node *prev;
int data;
struct node *next;
};

In the above code, a node is created using structures and a pointer variables prev and next, and an integer variable data.

The previous part value of the Head Node and Next part value of Tail node is NULL. Because the head is a first node it doesn’t contains any previous nodes so the previous is NULL, and the Tail node is the last node and it doesn’t contains any further nodes so , the next is NULL.

Program (for Doubly Linked List):

// using menu-driven method.
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
struct Node
{
struct Node *prev;
int data;
struct Node *next;
};
struct Node *head = NULL, *tail = NULL, *temp;
void insertionAtLast(int ele);
void deletionAtLast(void);
void insertionAtFirst(int ele);
void deletionAtFirst(void);
void insertionAtPosition(int ele, int pos);
void deletionAtPosition(int pos);
void traverse(void);
void insertionAtLast(int ele)
{
temp = (struct Node *)malloc(sizeof(struct Node));
temp->prev = NULL;
temp->data = ele;
temp->next = NULL;
if(head == NULL) // When list is not having any nodes.
{
head = tail = temp;
}//if
else // When list is having atleast one node.
{
tail->next = temp;
temp->prev = tail;
tail = temp;
}//else
}//insertionAtLast
void deletionAtLast(void)
{
if(head == NULL) // When list is empty.
{
printf("\nThe list is empty");
}//if
else if(head == tail) // When list is Having only one node.
{
head = tail = NULL;
}//else if
else // When list is having more than one node.
{
temp = tail;
tail = tail->prev;
tail->next = NULL;
free(temp);
}//else
}//deletionAtLast
void insertionAtFirst(int ele)
{
temp = (struct Node *)malloc(sizeof(struct Node));
temp->data = ele;
temp->next = NULL;
if(head == NULL) // When list is not having any nodes.
{
head = tail = temp;
}//if
else // When list is having atleast one node.
{
temp->next = head;
head->prev = temp;
head = temp;
}//else
}//insertionAtFirst
void deletionAtFirst(void)
{
if(head == NULL) // When list is empty.
{
printf("\nThe list is empty");
}//if
else if(head == tail) // When list is Having only one node.
{
head = tail = NULL;
}//else if
else // When list is having more than one node.
{
temp = head; // Assiging first node to temp.
head = head->next;
head->prev = NULL;
free(temp); // Deleting first node from memory.
}//else
}//deletionAtFirst
void insertionAtPosition(int ele, int pos)
{
struct Node *curr;
int i;
if(pos == 1)
{
insertionAtFirst(ele);
}//if
else
{
temp = (struct Node *)malloc(sizeof(struct Node));
temp->data = ele;
temp->next = NULL;
curr = head;
for(i=1; i<pos-1; i++) // Moving to previous of target position
{
curr = curr->next;
}//for
if(curr == NULL)
{
printf("\n Insertion not possible, Position out of range ");
}//if
else
{
temp->next = curr->next;
curr->next->prev = temp;
curr->next = temp;
temp->prev = curr;
if(curr == tail)
{
tail = temp;
}//if
}//else
}//else
}//insertionAtPosition
void deletionAtPosition(int pos)
{
int i;
if(head == NULL)
{
printf("\nList is empty");
}//if
else if(pos == 1)
{
deletionAtFirst();
}//else if
else
{
temp = head;
for(i=1; i<pos-1; i++) // Moving to previous of target position
{
temp = temp ->next;
}//for
if(temp == NULL)
{
printf("\n Deletion not possible, Position out of range");
}//if
else
{
if(temp->next == tail)
{
tail = temp;
tail->next = NULL;
}//if
else
{
temp->next = temp->next->next;
temp->next->prev = temp;
}//else
}//else
}//else
}//deletionAtPosition
void traverse(void)
{
if(head == NULL)
{
printf("\nList is empty");
}//if
else
{
temp = head;
while(temp != tail) // Diplaying all nodes except last one.
{
printf("%d <-> ", temp->data);
temp = temp -> next;
}//while
printf("%d ", temp->data);
}//else
}//traverse
void main(void)
{
int choice, ele, pos, key ;
clrscr();
while(1)
{
printf("\n \t Doubly Linked List Operations\n");
printf("1. Insert Last \n");
printf("2. Delete Last \n");
printf("3. Insert First \n");
printf("4. Delete First \n");
printf("5. Insert At Position \n");
printf("6. Delete At Position \n");
printf("7. Traverse the DLList \n");
printf("8. Exit\n");
printf("\nEnter your choice:");
scanf("%d", &choice );
switch ( choice )
{
case 1 :
printf("\nEnter the element:");
scanf("%d",&ele);
insertionAtLast(ele);
break;
case 2 :
deletionAtLast();
break;
case 3 :
printf("\nEnter the element:");
scanf("%d",&ele);
insertionAtFirst(ele);
break;
case 4 :
deletionAtFirst();
break;
case 5 :
printf("\nEnter the element:");
scanf("%d",&ele);
printf("\nEnter the position:");
scanf("%d",&pos);
insertionAtPosition(ele,pos);
break;
case 6 :
printf("\nEnter the position:");
scanf("%d",&pos);
deletionAtPosition(pos);
break;
case 7 :
traverse();
break;
case 8 :
exit(0);
default :
printf("\ninvalid choice!!!! try again!!!!\n");
break;
}//switch
}//while
}//main

Output:

Doubly Linked List Operations
1.Insert Last
2.Delete Last
3.Insert First
4.Delete First
5.Insert At Position
6.Delete At Position
7.Traverse the DLList
8.Exit
Enter your choice : 1
Enter the element:10
Doubly Linked List Operations
1.Insert Last
2.Delete Last
3.Insert First
4.Delete First
5.Insert At Position
6.Delete At Position
7.Traverse the DLList
8.Exit
Enter your choice : 8

Summary:

The doubly linked list contains previous address, next address, and data. The doubly linked list is used in the implementation of tree data structure. It is also used in undo and redo operations.


Related Topics

Add two numbers using the function in C

Here we will learn how to add two numbers by creating function in C. Let’s learn this with help of example. Code: - #include <stdio.h> int add_two_no(int a, int b); int main(){   int first_num,...

1 minute read.

Storage Class in C

C storage class is used to define the scope variables and function. There are four various types of storage classes that are given below. auto: The auto keyword is the default...

1 minute read.

If else Programs in C Programming

If else Programs in C programming The if-else statement in C is based on some particular conditions to perform the operations. If and only if the given condition is valid, the operations listed in...

4 minutes read.

Random Access - Lseek in C

Introduction lseek is a system call that is used to alter the location of the read/write pointer of a file descriptor. The lseek system call basically moves the current read/write location...

4 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.

Why does sizeof(x++) not Increment x in C

Sizeof() is a much-involved operator in C or C++. It is an incorporated time unary administrator which can be utilized to figure the size of its operand. The consequence of...

5 minutes read.

How to use floor() function in C

Introduction: The floor() used as a function in the C programming language. This function uses to return the largest or most significant integer value. The integer value is smaller than...

3 minutes read.

Difference between C and Java

C programming and Java programming are two of the earliest programming languages. C programming follows a procedural approach whereas Java programming follows an object-oriented approach. Java programming is a part...

3 minutes read.

How to create a node in C?

A node is a small concept taken from the graph theory, or a node is a fundamental unit of a data structure, like a tree data structure. Every graph contains...

3 minutes read.

Java Array vs ArrayList

As we all know, arrays are linear data structures that allow you to add elements to them continuously in memory address space, whereas ArrayList is a Collection framework class. Despite...

4 minutes read.

Two-Dimensional array in C

What is an Array? The collection of a fixed number of elements of homogeneous data types that are stored in contiguous locations in the memory is known as an array. Only...

6 minutes read.

Deadlock Detection Program in C

What is Deadlock? A deadlock is a circumstance where a group in the process is halted because they are each holding onto resources while waiting for other methods to obtain them. Think...

5 minutes read.

Bank management system in C

This is a mini project that is constructed completely using the C language. The bank management system is a beginner friendly project. To construct this user only needs to know...

12 minutes read.

#define in C

#define in C In the C programming language, the preprocessor directive acts an important role within which the #define directive is present that is used to define the constant or the...

3 minutes read.

Actual and Formal Parameters

Any variable declared within the parenthesis is referred to as the parameters during the function declaration. Parameters tell the function about the argument datatype, their order, and the number of...

5 minutes read.

Heap Sort in C

In this tutorial, we will learn about heap sorting in C language, but before going to Heap sort, we have to know the concept of Complete Binary Tree. What is Complete...

8 minutes read.

Nested if-else statement in C

If we use an if-else statement within another if statement in a C program, it is called a nested if-else statement in C. It helps to check the condition inside...

3 minutes read.

Do-While Loop in C

Both 'While' and 'Do-While' loops in C mostly have a similar concept, and the code of both loops runs for mainly similar purposes in the same manner. But, there is...

3 minutes read.

Find median of 1D array using function in C

Introduction: Here, we discuss how we can find the median of a 1D array using a function in C. The median is the value in the middle of the sorted...

3 minutes read.

Garbage in C

Garbage in C The C programming language is a perfect fit for embedded systems as it provides low level control, structured programming, and portability. On the contrary, it does not provide...

3 minutes read.