Mental Model
A tree shows clear parent-child links for hierarchy, arrays list items flatly, and linked lists chain items linearly.
Analogy: Think of a family tree (tree) showing generations, a photo album (array) showing pictures side by side, and a treasure map path (linked list) showing one step after another.
Tree:
1
/ \
2 3
/ \
4 5
Array:
[1][2][3][4][5]
Linked List:
1 -> 2 -> 3 -> 4 -> 5 -> null