};
A linked list is a linear data structure where each element is a separate object.
Linked list elements are not stored at contiguous location; the elements are linked using pointers.
Each node of a list is made up of two items - the data and a reference to the next node. The last node has a reference to null. The entry point into a linked list is called the head of the list.
TYPES OF LINKED LISTS:
1.Singly linked list
2.Doubly linked list
3. Circular singly linked list
4. Circular doubly linked list
OPERATIONS ON LINKED LIST:
Insertion − Adds an element at the beginning of the list.