InterviewSolution
Saved Bookmarks
| 1. |
General ordered tree can be encoded into binary trees.(a) true(b) falseAsked question is from Binary Trees in portion Binary Trees of Data Structures & Algorithms II have been asked this question by my school teacher while I was bunking the class. |
|
Answer» RIGHT answer is (a) true Easiest EXPLANATION - General ordered TREE can be mapped into binary tree by representing them in a left-child-right-sibling WAY. |
|