1.

What is the time complexity for deleting root key in a ternary heap of n elements?(a) O (log n/ log 3)(b) O (3log n/ log 3)(c) O (n)(d) O (1)I need to ask this question from Ternary heap topic in portion Heap of Data Structures & Algorithms IThis question was posed to me in a job interview.

Answer»

The correct OPTION is (b) O (3log N/ log 3)

The explanation is: In order to delete a root key in a ternary heap data structure having n elements, it performs downward swapping. So the time COMPLEXITY for WORST case is found to be O (3log n/ log 3).



Discussion

No Comment Found

Related InterviewSolutions