-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
226. 翻转二叉树
Description
Difficulty: 简单
Related Topics: 树, 深度优先搜索, 广度优先搜索, 二叉树
给你一棵二叉树的根节点 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
Solution
Language: JavaScript
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {TreeNode}
*/
var invertTree = function(root) {
if (root === null) return null
const queue = [root]
while(queue.length) {
const cur = queue.shift();
[cur.left, cur.right] = [cur.right, cur.left]
if (cur.left) queue.push(cur.left)
if (cur.right) queue.push(cur.right)
}
return root
}
Metadata
Metadata
Assignees
Labels
No labels