Hacktober fest 2022
To do :Add any hand codded code related to DSA to this repository
Overview of the content in the file linkedlist.c
- stdio.h
- stdlib.h
- node
- create()
Used for creating nodes - display()
Used for showing the elements in linked list - insertbeg()
Inserting new element at the first position of linked list - insrtend()
Inserting new element at the last position of linked list - count()
Count the number of elements at that time - delbeg()
Deletion from the front of the linked list - delend()
Deletion from the back of the linked list - posdel()
Deleting element by the given position - posinsert()
Inserting new element at given position