美文网首页
JZ-018-二叉树的镜像

JZ-018-二叉树的镜像

作者: 醉舞经阁半卷书 | 来源:发表于2021-12-07 13:21 被阅读0次

    二叉树的镜像

    题目描述

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

    题目链接: 二叉树的镜像

    代码

    /**
     * 标题:二叉树的镜像
     * 题目描述
     * 操作给定的二叉树,将其变换为源二叉树的镜像。
     * 题目链接:
     * https://www.nowcoder.com/practice/564f4c26aa584921bc75623e48ca3011?tpId=13&&tqId=11171&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking
     */
    public class Jz18 {
    
        /**
         * 递归法
         *
         * @param root
         */
        public static void mirror(TreeNode root) {
            if (root == null || (root.left == null && root.right == null)) {
                return;
            }
            TreeNode temp = root.left;
            root.left = root.right;
            root.right = temp;
            mirror(root.left);
            mirror(root.right);
        }
    
        public static void main(String[] args) {
            TreeNode root = new TreeNode(1);
            mirror(root);
        }
    }
    

    【每日寄语】 世上最耀眼的光芒除了太阳还有你努力的模样。

    相关文章

      网友评论

          本文标题:JZ-018-二叉树的镜像

          本文链接:https://www.haomeiwen.com/subject/uxzoxrtx.html