This document provides an introduction to linked lists. It defines a linked list as a sequence of data structures connected together via links. Each link contains a connection to another link and stores an element of data. It describes the basic components of a linked list as the first, next, and info pointers. The document outlines common linked list operations like insertion, deletion, display and search. It also lists different types of linked lists such as simple, doubly, and circular linked lists.