1.Implement singly and doubly linked lists.SINGLY LINKED LISTAIM:-
To write a ‘C’ program to create a singly linked list implementation.
ALGORITHM:-
1.
Start the program.2.
Get the choice from the user.3.
If the choice is to add records, get the data from the user and add them tothe list.4.
If the choice is to delete records, get the data to be deleted and delete itfrom the list.5.
If the choice is to display number of records, count the items in the list anddisplay.6.
If the choice is to search for an item, get the item to be searched andrespond yes if the item is found, otherwise no.7.
Terminate the program