Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 874 Bytes

226_翻转二叉树.md

File metadata and controls

55 lines (36 loc) · 874 Bytes

题目

226. 翻转二叉树

给你一棵二叉树的根节点 root ,翻转这棵二叉树,并返回其根节点。

示例 1:

img

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

示例 2:

img

输入:root = [2,1,3]
输出:[2,3,1]

示例 3:

输入:root = []
输出:[]

提示:

  • 树中节点数目范围在 [0, 100]
  • -100 <= Node.val <= 100

代码

class Solution {
    public TreeNode invertTree(TreeNode root) {
        if(root==null) return null;
        var tmp = root.right;
        root.right = invertTree(root.left);
        root.left =invertTree(tmp);
        return root;
    }
}

翻转子树 , 然后交换左右节点即可 , 递归执行