Mental Model
A singly linked list is a chain of nodes where each node points to the next one, forming a line.
Analogy: Imagine a treasure hunt where each clue (node) tells you where to find the next clue, leading you step by step to the treasure.
head -> [node1] -> [node2] -> [node3] -> null
