【Java面试题】二叉树的镜像

【题目】:

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

【示例】:
在这里插入图片描述

【关键点】: 二叉树

【Java】:

/**
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) {
        if(root != null){
            //交换
            TreeNode temp = root.left;
            root.left = root.right;
            root.right = temp;
            //有子递归
            if(root.left!= null){
                Mirror(root.left);
            }
            if(root.right!= null){
               Mirror(root.right);
            }
        }
    }
}

发布了195 篇原创文章 · 获赞 335 · 访问量 12万+

猜你喜欢

转载自blog.csdn.net/cungudafa/article/details/101350202