InterviewSolution
Saved Bookmarks
| 1. |
Is tango tree represented as a tree of trees.(a) True(b) FalseMy doubt stems from Binary Trees in portion Binary Trees of Data Structures & Algorithms IThe question was asked in final exam. |
|
Answer» RIGHT ANSWER is (a) True Easiest explanation - Partitioning METHOD is used by tango tree which partitions a binary search tree into small sets of paths and then STORING them to auxiliary trees. HENCE tango tree is represented as a tree of trees. |
|