function Mirror(root)
{
// write code here
var temp;
if(root != null){
temp = root.left;
root.left = root.right;
root.right = temp;
if(root.left != null){
Mirror(root.left);
}
if(root.right != null){
Mirror(root.right);
}
}
} 
京公网安备 11010502036488号