Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

GATE | GATE-CS-2006 | Question 13

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

A scheme for storing binary trees in an array X is as follows. Indexing of X starts at 1 instead of 0. the root is stored at X[1]. For a node stored at X[i], the left child, if any, is stored in X[2i] and the right child, if any, in X[2i+1]. To be able to store any binary tree on n vertices the minimum size of X should be.
(A) log2n
(B) n
(C) 2n + 1
(D) 2^n — 1


Answer: (D)

Explanation: See Question 2 of https://www.geeksforgeeks.org/data-structures-and-algorithms-set-7/

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads