Data Structure
Binary Tree
Learn data structure by example of binary tree algorithm
By Geekboots
4/28/2021
0 views
A binary tree is an important type of structure which is characterized by the fact that any node can have at most two branches, there is no node with degree greater than two.
The distinguish between the subtree on the left and on the right, whereas for trees the order of the subtree was irrelevant. Also a binary tree may have zero nodes. Thus a binary tree is really a different object than a tree. From a graph theory perspective, binary trees as defined here are actually arborescences.
Binary Tree Algorithmdata structurealgorithmbinary tree