欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

#力扣 Leetcode @FDDLC

程序员文章站 2024-01-04 14:46:16
...

题目描述:

剑指 Offer 27. 二叉树的镜像 - 力扣(LeetCode) (leetcode-cn.com)

 

Java代码:

class Solution {
    public TreeNode mirrorTree(TreeNode root) { //0 <= 节点个数 <= 1000
        if(root==null)return root;
        TreeNode temp=root.left;
        root.left=root.right;
        root.right=temp;
        mirrorTree(root.left); //返回值无意义
        mirrorTree(root.right);
        return root;
    }
}

#力扣 Leetcode @FDDLC

 

相关标签: 算法&数据结构

上一篇:

下一篇: