Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 914 Bytes

README.md

File metadata and controls

56 lines (42 loc) · 914 Bytes

226.翻转二叉树

难度:简单

https://leetcode-cn.com/problems/invert-binary-tree/

题目

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

 

示例 1:

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

示例 2:

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

示例 3:

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

提示:

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

题解

/**
 * @description 空间复杂度 O(1) 时间复杂度 O(N)
 * @param {TreeNode} root
 * @return {TreeNode}
 */
export function invertTree(root: TreeNode | null): TreeNode | null {
  if (!root) return root;
  [root.left, root.right] = [root.right, root.left]
  invertTree(root.left)
  invertTree(root.right)
  return root
}