We have discussed Linked List Introduction and Linked List Insertion in previous posts on singly linked list.

Let us formulate the problem statement to understand the deletion process. Given a ‘key’, delete the first occurrence of this key in linked list.
To delete a node from linked list, we need to do following steps.
1) Find previous node of the node to be deleted.
2) Changed next of previous node.
3) Free memory for the node to be deleted.

Deleting a node in Linked List | Set 3
Since every node of linked list is dynamically allocated using malloc() in C, we need to call free() for freeing memory allocated for the node to be deleted.

C++ Programming:

[pastacode lang=”cpp” manual=”%2F%2F%20A%20complete%20working%20C%20program%20to%20demonstrate%20deletion%20in%20singly%0A%2F%2F%20linked%20list%0A%23include%20%3Cstdio.h%3E%0A%23include%20%3Cstdlib.h%3E%0A%20%0A%2F%2F%20A%20linked%20list%20node%0Astruct%20node%0A%7B%0A%20%20%20%20int%20data%3B%0A%20%20%20%20struct%20node%20*next%3B%0A%7D%3B%0A%20%0A%2F*%20Given%20a%20reference%20(pointer%20to%20pointer)%20to%20the%20head%20of%20a%20list%0A%20%20%20and%20an%20int%2C%20inserts%20a%20new%20node%20on%20the%20front%20of%20the%20list.%20*%2F%0Avoid%20push(struct%20node**%20head_ref%2C%20int%20new_data)%0A%7B%0A%20%20%20%20struct%20node*%20new_node%20%3D%20(struct%20node*)%20malloc(sizeof(struct%20node))%3B%0A%20%20%20%20new_node-%3Edata%20%20%3D%20new_data%3B%0A%20%20%20%20new_node-%3Enext%20%3D%20(*head_ref)%3B%0A%20%20%20%20(*head_ref)%20%20%20%20%3D%20new_node%3B%0A%7D%0A%20%0A%2F*%20Given%20a%20reference%20(pointer%20to%20pointer)%20to%20the%20head%20of%20a%20list%0A%20%20%20and%20a%20key%2C%20deletes%20the%20first%20occurrence%20of%20key%20in%20linked%20list%20*%2F%0Avoid%20deleteNode(struct%20node%20**head_ref%2C%20int%20key)%0A%7B%0A%20%20%20%20%2F%2F%20Store%20head%20node%0A%20%20%20%20struct%20node*%20temp%20%3D%20*head_ref%2C%20*prev%3B%0A%20%0A%20%20%20%20%2F%2F%20If%20head%20node%20itself%20holds%20the%20key%20to%20be%20deleted%0A%20%20%20%20if%20(temp%20!%3D%20NULL%20%26%26%20temp-%3Edata%20%3D%3D%20key)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20*head_ref%20%3D%20temp-%3Enext%3B%20%20%20%2F%2F%20Changed%20head%0A%20%20%20%20%20%20%20%20free(temp)%3B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20free%20old%20head%0A%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20%2F%2F%20Search%20for%20the%20key%20to%20be%20deleted%2C%20keep%20track%20of%20the%0A%20%20%20%20%2F%2F%20previous%20node%20as%20we%20need%20to%20change%20’prev-%3Enext’%0A%20%20%20%20while%20(temp%20!%3D%20NULL%20%26%26%20temp-%3Edata%20!%3D%20key)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20prev%20%3D%20temp%3B%0A%20%20%20%20%20%20%20%20temp%20%3D%20temp-%3Enext%3B%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20%2F%2F%20If%20key%20was%20not%20present%20in%20linked%20list%0A%20%20%20%20if%20(temp%20%3D%3D%20NULL)%20return%3B%0A%20%0A%20%20%20%20%2F%2F%20Unlink%20the%20node%20from%20linked%20list%0A%20%20%20%20prev-%3Enext%20%3D%20temp-%3Enext%3B%0A%20%0A%20%20%20%20free(temp)%3B%20%20%2F%2F%20Free%20memory%0A%7D%0A%20%0A%2F%2F%20This%20function%20prints%20contents%20of%20linked%20list%20starting%20from%20%0A%2F%2F%20the%20given%20node%0Avoid%20printList(struct%20node%20*node)%0A%7B%0A%20%20%20%20while%20(node%20!%3D%20NULL)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20printf(%22%20%25d%20%22%2C%20node-%3Edata)%3B%0A%20%20%20%20%20%20%20%20node%20%3D%20node-%3Enext%3B%0A%20%20%20%20%7D%0A%7D%0A%20%0A%2F*%20Drier%20program%20to%20test%20above%20functions*%2F%0Aint%20main()%0A%7B%0A%20%20%20%20%2F*%20Start%20with%20the%20empty%20list%20*%2F%0A%20%20%20%20struct%20node*%20head%20%3D%20NULL%3B%0A%20%0A%20%20%20%20push(%26head%2C%207)%3B%0A%20%20%20%20push(%26head%2C%201)%3B%0A%20%20%20%20push(%26head%2C%203)%3B%0A%20%20%20%20push(%26head%2C%202)%3B%0A%20%0A%20%20%20%20puts(%22Created%20Linked%20List%3A%20%22)%3B%0A%20%20%20%20printList(head)%3B%0A%20%20%20%20deleteNode(%26head%2C%201)%3B%0A%20%20%20%20puts(%22%5CnLinked%20List%20after%20Deletion%20of%201%3A%20%22)%3B%0A%20%20%20%20printList(head)%3B%0A%20%20%20%20return%200%3B%0A%7D” message=”” highlight=”” provider=”manual”/]

Output:

Created Linked List:
 2  3  1  7
Linked List after Deletion of 1:
 2  3  7
[ad type=”banner”]