https://www.youtube.com/watch?v=Hj_rA0dhr2I

A linked list is a sequential list of nodes that hold data which point to other nodes also containing data.

Screenshot 2023-06-26 at 8.20.02 PM.png

Where are linked lists used:

Terminology

Head: The first node in a linked list

Tail: The last node in a linked list

Pointer: Reference to another node

Node: An object containing data and pointer(s).

Screenshot 2023-06-26 at 8.47.09 PM.png