Concept Flow - Adjacency list pattern
Start with a node
Store node with unique ID
Store references (IDs) of connected nodes
To find neighbors, query by stored references
Repeat for each node
Traverse graph by following references
Each node stores IDs of its connected nodes. To find neighbors, we look up these IDs. This builds a graph using references.