Binary Tree
A binary Tree is a tree with a few extra constraints added on top:
- Every node can have at most 2 children
- Each child node is either left or right child.
- A left child precedes a right child in the order of the children of the parent.
Search
A binary Tree is a tree with a few extra constraints added on top: