We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difficulty: 简单
Related Topics: 树, 深度优先搜索, 广度优先搜索, 二叉树
给你一棵二叉树的根节点 root ,翻转这棵二叉树,并返回其根节点。
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
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 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
226. 翻转二叉树
Description
Difficulty: 简单
Related Topics: 树, 深度优先搜索, 广度优先搜索, 二叉树
给你一棵二叉树的根节点
root
,翻转这棵二叉树,并返回其根节点。示例 1:
示例 2:
示例 3:
提示:
[0, 100]
内-100 <= Node.val <= 100
Solution
Language: JavaScript
The text was updated successfully, but these errors were encountered: