Due to many complications arrived with arrays we move into Linked Lists. Linked List is a thing composed of nodes. The connection between them are maintained through pointing to the next node (Successor) or the previous one (predecessor).
The Linked List are several types mainly they are :
The Linked List are several types mainly they are :
- Singly Linked List
- Doubly Linked List
- Circular Linked List
Singly Linked list - points only to the successor.
A Singly Linked List
Doubly Linked List - Points to successor as well as Predecessor
A Doubly Linked List
A Circular Linked List - Forms a ring from directions.
there are two kinds of circular linked lists namely as singly and doubly.
A Circular Singly Linked List
So this is the Intro for the Linked List hope to do the Implementation soon.