Mental Model
A trie stores words by sharing common prefixes in a tree structure, adding new letters as branches.
Analogy: Imagine a tree of roads where each letter is a street sign; inserting a word means building new streets only where needed.
root
↓
{} (empty root node with no children)