DS Presentation
DS Presentation
T O O U R P R E S E N TAT I O N
PRESENTATION TOPIC: LINKED
LIST
PRESENTED BY:
struct Node
{ int data ;
struct Node *next ; } ;
1.Insertion
2.Deletion
3.Traversal (Forward and Backward)
4.Searching
5.Reversing
Circular Linked List
•In a circular linked list, the last
node's link points back to the
first node, forming a circle.
•It can be singly or doubly linked.
•Useful in applications where
elements need to be accessed in
a continuous loop. Fig: Circular Linked
List
Advantages:
•Dynamic size
•Efficient insertion and deletion
•Memory utilization
Disadvantages: