I have two questions regarding binary search trees, both about empty trees.
A binary tree can be defined recursively as:
A single node with either no children, or with two children - each of which is a binary tree.