1.

How many bits would a succinct binary tree occupy?(a) n+O(n)(b) 2n+O(n)(c) n/2(d) nMy question is from Binary Trees topic in division Binary Trees of Data Structures & Algorithms IThe question was asked in unit test.

Answer»

Correct option is (b) 2n+O(n)

The best I can explain: A SUCCINCT binary tree OCCUPIES CLOSE to minimum POSSIBLE space established by lower BOUNDS. A succinct binary tree would occupy 2n+O(n) bits.



Discussion

No Comment Found

Related InterviewSolutions