Home » Program to Insert a New Node at the Middle of Doubly Linked List

Program to Insert a New Node at the Middle of Doubly Linked List

by Online Tutorials Library

Q. Program to insert a new node at the middle of doubly linked list.

Explanation

In this program, we create a doubly linked list and insert a new node in the middle of list. If list is empty, both head and tail will point to new node. If list is not empty, then we will calculate the size of the list and divide it by 2 to get the mid-point of the list where new node needs to be inserted.

Program to insert a new node at the middle of doubly linked list

Consider the above diagram; a new node needs to be added to the middle of the list. First, we calculate the size which in this case is 4. So, to get the mid-point, we divide it by 2 and store it in a variable mid. Node current will point to head. First, we iterate through the list until current points to mid position. Define another node temp which point to node next to current. Insert the new node between current and temp

Algorithm

  1. Define a Node class which represents a node in the list. It will have three properties: data, previous which will point to the previous node and next which will point to the next node.
  2. Define another class for creating the doubly linked list, and it has two nodes: head and tail. Initially, head and tail will point to null.
  3. addNode() will add node to the list:
    1. It first checks whether the head is null, then it will insert the node as the head.
    2. Both head and tail will point to a newly added node.
    3. Head’s previous pointer will point to null and tail’s next pointer will point to null.
    4. If the head is not null, the new node will be inserted at the end of the list such that new node’s previous pointer will point to tail.
    5. The new node will become the new tail. Tail’s next pointer will point to null.
  4. addInMid() will add a node to the middle of the list:
    1. It first checks whether the head is null (empty list), then it will insert the node as the head.
    2. Both head and tail will point to a newly added node.
    3. If the list is not empty, then we calculate size and divide it by 2 to get the mid-point.
    4. Define node current that will point to head and iterate through the list till current will point to mid node.
    5. Define another node temp which will point to node next to current.
    6. The new node will be inserted after current and before temp such that current will point to the new node and the new node will point to temp.
  5. display() will show all the nodes present in the list.
    1. Define a new node ‘current’ that will point to the head.
    2. Print current.data till current points to null.
    3. Current will point to the next node in the list in each iteration.

Solution

Python

Output:

Original list:   1 2   Updated List:   1 3 2   Updated List:   1 3 4 2   Updated List:   1 3 5 4 2   

C

Output:

Original list:   1 2   Updated List:   1 3 2   Updated List:   1 3 4 2   Updated List:   1 3 5 4 2   

JAVA

Output:

Original list:   1 2   Updated List:   1 3 2   Updated List:   1 3 4 2   Updated List:   1 3 5 4 2   

C#

Output:

Original list:   1 2   Updated List:   1 3 2   Updated List:   1 3 4 2   Updated List:   1 3 5 4 2   

PHP

Output:

Original list:   1 2   Updated List:   1 3 2   Updated List:   1 3 4 2   Updated List:   1 3 5 4 2   

Next Topic#

You may also like