A linked list is a dara structureconsisting of a group of nodes which together represent a sequence.
Advantages:
- is a dynamic data structure;
- linear data structures are easily executed with it;
- can reduce access time.
Disadvantages:
- tendency to waste memory;
- nodes are stored incontiguously.
Types of operations: Linearly linked lists and circularly linked lists.