This document provides an overview of linked lists including:
- Representation of linked lists in memory using two arrays - one for node information and one for node links
- Common linked list operations like traversing, searching, insertion and deletion
- Different types of linked lists such as doubly linked lists, circular linked lists and header linked lists
Related topics: