3 Star 21 Fork 5

xiaochen1024/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
107.js 559 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenwei 提交于 2021-10-23 21:19 . init
const levelOrderBottom = (root) => {
if (root == null) {
return [];
}
const queue = [];
queue.push(root);
const res = [];
while (queue.length) {
const subRes = [];
const levelSize = queue.length;
for (let i = 0; i < levelSize; i++) {
const cur = queue.shift();
subRes.push(cur.val);
if (cur.left) {
queue.push(cur.left);
}
if (cur.right) {
queue.push(cur.right);
}
}
res.unshift(subRes); //和102不一样的地方 推入res中的方向正好相反
}
return res;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaochen1024/leetcode.git
git@gitee.com:xiaochen1024/leetcode.git
xiaochen1024
leetcode
leetcode
master

搜索帮助