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 = [3,9,20,null,null,15,7] 输出:[[3],[9,20],[15,7]]
示例 2:
输入:root = [1] 输出:[[1]]
示例 3:
输入:root = [] 输出:[]
提示:
[0, 2000]
-1000 <= Node.val <= 1000
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 {number[][]} */ // 队列 var levelOrder = function(root) { const ans = [] if (!root) return ans const q = [] q.push(root) // 初始化队列 while (q.length) { const len = q.length // 当前层节点的数量 ans.push([]) // 新的层推入数组 for (let i = 1; i <= len; i++) { const node = q.shift() // 推入当前层的数组 ans[ans.length - 1].push(node.val) // 检查左节点,存在左节点就继续加入队列 if (node.left) q.push(node.left) if (node.right) q.push(node.right) } } return ans }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
102. 二叉树的层序遍历
Description
Difficulty: 中等
Related Topics: 树, 广度优先搜索, 二叉树
给你二叉树的根节点
root
,返回其节点值的 层序遍历 。 (即逐层地,从左到右访问所有节点)。示例 1:
示例 2:
示例 3:
提示:
[0, 2000]
内-1000 <= Node.val <= 1000
Solution
Language: JavaScript
The text was updated successfully, but these errors were encountered: