52.
Why to prefer red-black trees over AVL trees?

54.
What output does the below pseudo code produces?
Tree_node function(Tree_node x)
{
    Tree_node y = x.left;
    x.left = y.right;
    y.right = x;
    return y;
}

55.
What is a Cartesian tree?

57.
What is the special property of red-black trees and what root should always be?

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.