Note: The translation for this entry is currently under quality review. Some content is temporarily displayed in English only.
binary tree
This term is a technical specification used almost exclusively within computer science and software engineering. It describes a specific organizational logic where data branches in a strict two-way split, creating a parent-child relationship that facilitates logarithmic time complexity for operations like searching and insertion.
In professional discourse, the term is often modified by adjectives to specify the tree's properties, such as a balanced binary tree or a binary search tree. It is a concrete structural concept rather than a metaphorical one, and it should not be confused with general decision trees, which may have more than two branches per node.