InterviewSolution
Saved Bookmarks
| 1. |
Which type of binary search tree or algorithm does tango tree use?(a) Online(b) Offline(c) Static(d) DynamicThe doubt is from Binary Trees in section Binary Trees of Data Structures & Algorithms II have been asked this question in homework. |
|
Answer» CORRECT answer is (d) Dynamic Explanation: Tango tree is an ONLINE binary search tree whose time complexity is O (log (log n)) when compared to the time complexity of OFFLINE binary search tree MODEL. Online algorithm processes input or data provided PIECE by piece. |
|