IT lexicon Programming Tree

Tree

Programming På svenska → Updated: 2026-05-23

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.

← Back to the lexicon