1.

What is the time complexity for the update cost on auxiliary trees?(a) O (log (log n))(b) k-1 O (log n)(c) K^2 O (log n)(d) k+1 O (log (log n))This interesting question is from Binary Trees topic in chapter Binary Trees of Data Structures & Algorithms IThis question was posed to me by my school principal while I was bunking the class.

Answer»

The correct OPTION is (d) k+1 O (LOG (log n))

The explanation is: The UPDATE COST also is bounded by the upper bound. We perform one cut as well as one join operation for the AUXILIARY tree, so the total update cost for the auxiliary tree is found to be k+1 O (log (log n)).



Discussion

No Comment Found

Related InterviewSolutions