Apurba PaulAug 8, 20191 min readSingly Linked List- Part 3The nodes of the List can be deleted from three positions of the List: 1. Delete the last node of the list 2. Delete the first node of...
Apurba PaulAug 8, 20191 min readSingly Linked List-Part 2A Node can be created in three positions of a linked list: 1. At the end of the List 2. At the beginning of the List 3. At any desired...
Apurba PaulAug 3, 20192 min readSingly Linked List-Part 4(Merge)/*How to Merge two Sorted Linked List using C*/ #include<stdio.h> //List1 typedef struct mynode1 { int info; struct mynode1 *Link;...