Neocortex 🧠

Search

Search IconIcon to open search

Binary Tree

Last updated Dec 14, 2021 Edit Source

A binary Tree is a tree with a few extra constraints added on top:

  1. Every node can have at most 2 children
  2. Each child node is either left or right child.
  3. A left child precedes a right child in the order of the children of the parent.

Interactive Graph