LINKED LIST
A linked list consists of a data element known as a node. And each node consists of two fields: one field has data, and in the second field, the node has an address that keeps a reference to the next node.
Introduction:-
TYPES OF LINKED LIST:-
The following are the types of linked list:
- Singly Linked list.
- Doubly Linked list.
- Circular Linked list.
- Doubly Circular Linked list