Home » Insertion in Doubly Linked List at Beginning

Insertion in Doubly Linked List at Beginning

by Online Tutorials Library

Insertion in doubly linked list at beginning

As in doubly linked list, each node of the list contain double pointers therefore we have to maintain more number of pointers in doubly linked list as compare to singly linked list.

There are two scenarios of inserting any element into doubly linked list. Either the list is empty or it contains at least one element. Perform the following steps to insert a node in doubly linked list at beginning.

  • Allocate the space for the new node in the memory. This will be done by using the following statement.
  • Check whether the list is empty or not. The list is empty if the condition head == NULL holds. In that case, the node will be inserted as the only node of the list and therefore the prev and the next pointer of the node will point to NULL and the head pointer will point to this node.
  • In the second scenario, the condition head == NULL become false and the node will be inserted in beginning. The next pointer of the node will point to the existing head pointer of the node. The prev pointer of the existing head will point to the new node being inserted.
  • This will be done by using the following statements.

Since, the node being inserted is the first node of the list and therefore it must contain NULL in its prev pointer. Hence assign null to its previous part and make the head point to this node.

Algorithm :

  • Step 1: IF ptr = NULL
  •  &nbspWrite OVERFLOW
    &nbspGo to Step 9
     [END OF IF]

  • Step 2: SET NEW_NODE = ptr
  • Step 3: SET ptr = ptr -> NEXT
  • Step 4: SET NEW_NODE -> DATA = VAL
  • Step 5: SET NEW_NODE -> PREV = NULL
  • Step 6: SET NEW_NODE -> NEXT = START
  • Step 7: SET head -> PREV = NEW_NODE
  • Step 8: SET head = NEW_NODE
  • Step 9: EXIT

Insertion in doubly linked list at beginning

C Function

Output

Enter the item which you want to insert?  12    Press 0 to insert more ?  0    Enter the item which you want to insert?  23    Press 0 to insert more ?  2  

Output

Enter the item which you want to insert?  12    Press 0 to insert more ?  2  

Next TopicDoubly Linked List

You may also like