Circular Linked List
Circular Linked List
- Circular Linked List is Divided into 2 Categories .
- Singly Circular Linked List
- Doubly Circular Linked List
- In Circular Linked List Address field of Last node contain address of “First Node“.
- In short First Node and Last Nodes are adjacent .
- Linked List is made circular by linking first and last node , so it looks like circular chain [ shown in Following diagram ].
- Two way access is possible only if we are using “Doubly Circular Linked List”
- Sequential movement is possible
- No direct access is allowed.
Comments
Post a Comment