算法刷题--二叉树的镜像

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

思路:就是简单的把左右子树调换位置,但是做这种题目一定要注意限定条件,即根节点不为空,后面才能操作,然后对根节点的左右子树进行递归,继续调换位置,以此类推完成题目。

代码:

/**
public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;

    }

}
*/
public class Solution {
    public void Mirror(TreeNode root) {
        TreeNode temp = null;
        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);
            }
        }   
    }
}

 

你可能感兴趣的:(java刷题笔记)