Mental Model
A stack is a collection where you add and remove items only from the top. Using a linked list means each item points to the next, so we can easily add or remove the top item.
Analogy: Imagine a stack of plates where you always put a new plate on top and take the top plate off. Each plate has a small stick pointing to the plate below it.
Top -> [Node1] -> [Node2] -> [Node3] -> null ā stack pointer
