Advertisements
Advertisements
Question
What is Binary Tree?
Short Answer
Solution
A binary tree is defined as a set of finite set of elements called nodes such that:
- Tree is empty.
- A tree contains a root node and remaining nodes of tree form an ordered pair of disjoint binary trees (left and right).
- In a binary tree, no node has a degree greater than 2.
- E.g.
shaalaa.com
Basic Data Structures (Stack, Queue, Dequeue)
Is there an error in this question or solution?