Mental Model
A tree shows clear parent-child links for hierarchy, arrays store items in order without hierarchy, and linked lists chain items linearly without branching.
Analogy: Think of a family tree (tree) showing parents and children, a photo album (array) with pictures in order, and a line of people holding hands (linked list) passing a message one by one.
Tree:
1
/ \
2 3
/ \
4 5
Array:
[1][2][3][4][5]
Linked List:
1 -> 2 -> 3 -> 4 -> 5 -> null