Experiment No-7
Experiment No-7
Experiment No. 7
AIM: Implementation of Circular Linked List
THEORY:
Circular Linked List is a variation of Linked list in which the first element points to
the last element and the last element points to the first element. Both Singly
Linked List and Doubly Linked List can be made into a circular linked list.
Program Output:
CONCLUSION: A circular linked list is implemented and operations of insertion,
deletion and display are performed on it.