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
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
Join The Discussion