《剑指Offer》二叉树的镜像(Java 实现)

被刻印的时光 ゝ 提交于 2020-02-01 00:12:42

一、题目

1.1 题目描述

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

1.2 题目链接

  • 《牛客网》:二叉树的镜像

二、实现代码

/**
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) return;
        TreeNode node = root.left;
        root.left = root.right;
        root.right = node;
        Mirror(root.left);
        Mirror(root.right);
    }
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!