Examveda

What must be the missing logic below so as to print mirror of a tree as below as an example?
Binary Search Trees(B Tree) mcq question image

if(rootnode):
  mirror(rootnode-->left)
  mirror(rootnode-->right)
 
  //missing
 
end

A. swapping of left and right nodes is missing

B. swapping of left with root nodes is missing

C. swapping of right with root nodes is missing

D. nothing is missing

Answer: Option A


This Question Belongs to Data Structure >> Binary Search Trees(B Tree)

Join The Discussion

Related Questions on Binary Search Trees(B Tree)