Data Structures Multiple Choice Questions and Answers on Binary Trees using Array

1. Binary trees can have how many children?

a) 2
b) any number of children
c) 0 or 1 or 2
d) 0 or 1
Answer: c

Explanation: Can have atmost 2 nodes.
2. Disadvantage of using array representation for binary trees is?

a) difficulty in knowing children nodes of a node
b) difficult in finding the parent of a node
c) have to know the maximum number of nodes possible before creation of trees
d) difficult to implement
Answer: c

Explanation: The array is fixed size (may be dynamic array or static array) but size is fixed.
3. What must be the ideal size of array if the height of tree is ‘l’?

a) 2l-1
b) l-1
c) l
d) 2l
Answer: a

Explanation: Since maximum elements in a tree (complete binary tree) of height l will be 2l-1 so a good array size must be that (since a binary tree node may not always have 2 children but for safety a is correct).
4. What are the children for node ‘w’ of a complete-binary tree in an array representation ?

a) 2w and 2w+1
b) 2+w and 2-w
c) w+1/2 and w/2
d) w-1/2 and w+1/2
Answer: a

Explanation: Since each node has 2 children and so counting from beginning, a particular node will have children as option a.
5. What is the parent for a node ‘w’ of a complete binary tree in an array representation when w is not 0?

a) floor(w-1/2)
b) ceil(w-1/2)
c) w-1/2
d) w/2
Answer: a

Explanation: Floor of w-1/2 because we can’t miss a node.
6. If the tree is not a complete binary tree then what changes can be made for easy access of children of a node in the array ?

a) every node stores data saying which of its children exist in the array
b) no need of any changes continue with 2w and 2w+1, if node is at i
c) keep a seperate table telling children of a node
d) use another array parallel to the array with tree
Answer: a

Explanation: Array cannot represent arbitrary shaped trees it can only be used in case of complete trees hence option a must be done which is one of several ways to use array in such situations.
7. What must be the missing logic in place of missing lines for finding sum of nodes of binary tree in alternate levels?

  //e.g:-consider -complete binary tree:-height-3, [1,2,3,4,5,6,7]-answer must be 23
  n=power(2,height)-1; //assume input is height and a[i] contains tree elements
  for(i=1;i<=n;)
  {
        for(j=1;j<=pow(2,currentlevel-1);j++) //present level is initialized to 1 and sum is initialized to  0
        {
           sum=sum+a[i];
           i=i+1;
        }
     //missing logic
  }
a)
   i=i+pow(2,currentlevel);
   currentlevel=currentlevel+2;
   j=1;
b)
   i=i+pow(2,currentlevel);
   currentlevel=currentlevel+2;
   j=0;
c)
   i=i-pow(2,currentlevel);
   currentlevel=currentlevel+2;
   j=1;
d)
   i=i+pow(2,currentlevel);
   currentlevel=currentlevel+1;
   j=1;

Answer: a

Explanation: The i value must skip through all nodes in the next level and current level must be one+next level.
 
 
8. Consider a situation of writing a binary tree into a file with memory storage efficiency in mind, is array representation of tree is good ?

a) yes because we are overcoming the need of pointers and so space efficiency
b) yes because array values are indexable
c) No it is not efficient in case of sparse trees and remaning cases it is fine
d) No linked list representation of tree is only fine
Answer: c

Explanation: In case of sparse trees(where one node per level in worst cases), the array size (2^h)-1 where h is height but only h indexes will be filled and (2^h)-1-h nodes will be left unused leading to space wastage which was actually main theme of question.
9. Why is heap implemented using array representations than tree(linked list) representations though both tree representations and heaps have same complexities ?

for binary heap
-insert: O(log n)
-delete min: O(log n)
 
for a tree
-insert: O(log n)
-delete: O(log n)
Then why go with array representation when both are having same values ?

a) arrays can store trees which are complete and heaps are by it’s property are complete
b) lists representation takes more memory hence memory efficiency is less and go with arrays
c) array have better caching
d) all of the mentioned
Answer: d

Explanation: In memory the pointer address for next node may not be adjacent or nearer to each other and also array have wonderful caching power from os and manipulating pointers is a overhead.
10. Can a tree stored in an array using either one of inorder or post order or pre order traversals be again reformed ?

a) yes just traverse through the array and form the tree
b) No we need one more traversal to form a tree
c) No in case of sparse trees
d) None of the mentioned
Answer: b

Explanation: we need any two traversals for tree formation but if some additional stuff or techniques are used while storing a tree in an array then one traversal can facilitate like also storing null values of a node in array.

Related

Multiple Choice Questions 5966773835781641648

Post a Comment

emo-but-icon

item