# Binary Trees Related to [Rooted-Trees](Rooted-Trees.md) are **binary trees**, which are trees for which every node has at most two child nodes. ![](Screen%20Shot%202021-04-15%20at%208.41.18%20AM.png) Binary trees rarely manifest themselves in the real world. Generally, binary trees are artificially created and integrated as data structures. They can be used to guarantee efficient insertions, removals and access to data. --- Links to: [Trees](Trees.md) [Binary Search Trees](Binary%20Search%20Trees.md) References: