InterviewSolution
Saved Bookmarks
| 1. |
State any two characteristics of a Binary tree. |
|
Answer» A binary tree is an important type of structure which occurs very often. • It is characterized by the fact that any node can have at most two branches, i. e., there is no node with degree greater than two. • For binary trees, we distinguish between the subtree on the left and on the right. • A binary tree may have zero nodes. |
|