1.

What is the time complexity for creating a new node and then performing concatenation in the rope data structure?(a) O (log n)(b) O (n!)(c) O (n^2)(d) O (1)This interesting question is from Binary Trees topic in portion Binary Trees of Data Structures & Algorithms IThe question was posed to me in an interview for internship.

Answer»

Correct option is (d) O (1)

EXPLANATION: In order to perform the concatenation on the rope DATA structure, one can create two nodes S1 and S2 and then performing the operation in constant time that is the time complexity is O (1).



Discussion

No Comment Found

Related InterviewSolutions