Circular Linked List

In Circular Linked List, The last element of the linked list have their next element 'head' unlike others have 'NULL'

Insertion in circular linked list

This includes:
1. Insertion at Tail
2. Insertion at head


Deletion in circular linked list

This includes:
1. Deletion from position

2. Deletion at head

next