21. Which of the following trees is similar to that of an AA-Tree?
22. What must be the missing logic below so as to print mirror of a tree as below as an example?
/1725099435-50-9.png)
if(rootnode):
mirror(rootnode-->left)
mirror(rootnode-->right)
//missing
end
/1725099435-50-9.png)
if(rootnode):
mirror(rootnode-->left)
mirror(rootnode-->right)
//missing
end
23. What is the maximum number of children that a binary tree node can have?
24. Is partitioning method used by Tango Tree.
25. For the tree below, write the pre-order traversal.
/1725100895-52-1.png)
26. What is the time complexity for creating a new node and then performing concatenation in the rope data structure?
27. What is the time complexity of level order traversal?
28. 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?
29. Self - balancing binary search trees have a much better average-case time complexity than hash tables.
30. What are null nodes filled with in a threaded binary tree?
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.