剑指offer--18. 二叉树的镜像

题目:
操作给定的二叉树,将其变换为源二叉树的镜像。

思路:
递归

public class Solution {
    public void Mirror(TreeNode root) {
        if(root == null)
            return;
        if(root.left == null && root.right == null)
            return;
         
        TreeNode temp = root.left;
        root.left = root.right;
        root.right = temp;

        Mirror(root.left);
        Mirror(root.right);
    }
}

你可能感兴趣的:(剑指offer--18. 二叉树的镜像)