Advantages of Linked Lists
- They are a dynamic in nature which allocates the memory when
required.
- Linked List can grow and shrink during run time.
- Insertion and deletion operations can be easily implemented.
- Stacks and queues can be easily executed
Disadvantages of Linked List
The memory is wasted as pointers require extra memory for storage.
No element can be accessed randomly, it has to access each node
sequentially.
Reverse Traversing is difficult in linked list.