41. How many orders of traversal are applicable to a binary tree (In General)?
42. Which of the following properties are obeyed by all three tree - traversals?
43. Level order traversal of a tree is formed with the help of
44. Which type of data structure does rope represent?
45. What is inefficient with the below threaded binary tree picture?
/1725257064-68-8.png)
46. Two balanced binary trees are given with m and n elements respectively. They can be merged into a balanced binary search tree in . . . . . . . . time.
47. What is missing in this logic of finding a path in the tree for a given sum (i.e checking whether there will be a path from roots to leaf nodes with given sum)?
checkSum(struct bin-treenode *root , int sum) :
if(root==null)
return sum as 0
else :
leftover_sum=sum-root_node-->value
//missing
checkSum(struct bin-treenode *root , int sum) :
if(root==null)
return sum as 0
else :
leftover_sum=sum-root_node-->value
//missing48. Which of the below statements are true?
i. Cartesian tree is not a height balanced tree
ii. Cartesian tree of a sequence of unique numbers can be unique generated
i. Cartesian tree is not a height balanced tree
ii. Cartesian tree of a sequence of unique numbers can be unique generated
49. Which of the following pair's traversals on a binary tree can build the tree uniquely?
50. What is the time complexity for the update cost on auxiliary trees?
Read More Section(Binary Search Trees(B Tree))
Each Section contains maximum 100 MCQs question on Binary Search Trees(B Tree). To get more questions visit other sections.
