Definition: A list implemented by each item having a link to the next item.
Also known as singly linked list. Other forms exist such as doubly linked list, double ended linked list, sorted linked list.
Bibliography:
Black, Paul E. (2019-10-1). Pieterse, Vreda; Black, Paul E. (eds.). "linked list". Dictionary of Algorithms and Data Structures. National Institute of Standards and Technology. Retrieved from: https://xlinux.nist.gov/dads/HTML/linkedList.html
Parlante, Nick. (2004-04-12). Linked List Basics . Retrieved from: http://cslibrary.stanford.edu/103/
A linked list is made of a node (or link) and a pointer to the next node.
A linked list begins with a head, or first. It's kind of like a train, where you can add more nodes. The linked list keeps track of the pointer to the first node.
Designing the Linked List from Nodes