剑指 Offer 27. 二叉树的镜像(难度:简单)

请完成一个函数,输入一个二叉树,该函数输出它的镜像。

例如输入:

     4    
   /   \   
  2     7 
 / \   / \ 
1   3 6   9

镜像输出:

     4   
   /   \   
  7     2  
 / \   / \ 
9   6 3   1

示例 1:

输入:root = [4,2,7,1,3,6,9] 输出:[4,7,2,9,6,3,1]

限制: 0 <= 节点个数 <= 1000

题解:考虑递归遍历(dfs)二叉树,交换每个节点的左 / 右子节点,即可生成二叉树的镜像。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public TreeNode mirrorTree(TreeNode root) {
        if(root == null) return null;
        TreeNode tmp = root.left;
        root.left = mirrorTree(root.right);
        root.right = mirrorTree(tmp);
        return root;
    }
}

在这里插入图片描述

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/er-cha-shu-de-jing-xiang-lcof

你可能感兴趣的:(二叉树,算法,leetcode,java)