Binary tree

A binary tree is a tree structure in wherein every node has at most two offspring, referred to as the left child and the right child. A (non-empty) binary tree is a tuple (L, S, R), where L and R are binary trees or the empty set, and S is a singleton set containing the root, according to a recursive using only set notions. Some authors enable the binary tree to also be the empty set.

Last Updated on 1 year by pinc