\
* A binary tree is made of nodes, where each node contains a left and right pointer and a data element.Ā
* The root pointer points to the topmost node in the tree
* The left and right pointers recursively point to smaller subtrees.Ā
* A null pointer is a binary tree with no elements - basically an empty tree.Ā
* The formal recursive definition: a binary tree is either empty, or is made of a single node, where the left and right pointers, each point to a binary tree.