Tree
Hierarchical data structure — a root, nodes with children, no cycles.
DOM (HTML), file systems, abstract syntax trees. Binary search tree: fast search O(log n) when balanced. B-trees: the foundation of database indexes. Heap: a special binary tree for priority queues.