Compare commits

..

No commits in common. "f391e66174e490b36546a47c604edf9ee1c91620" and "7055121867ef5cf05e0332ca20ea8b46ea549112" have entirely different histories.

3 changed files with 0 additions and 44 deletions

View File

@ -359,11 +359,6 @@ LeetCode 与 LintCode 解题记录。此为个人练习仓库,代码中对重
- LeetCode 572. 另一个树的子树 <https://leetcode-cn.com/problems/subtree-of-another-tree/>
- LintCode 1165. 另一个树的子树 <https://www.lintcode.com/problem/subtree-of-another-tree/description>
- [二叉树的层序遍历](src/tree/binary-tree-right-side-view.js)
- LeetCode 102. 二叉树的层序遍历 <https://leetcode-cn.com/problems/binary-tree-level-order-traversal/>
- LintCode 69. 二叉树的层次遍历 <https://www.lintcode.com/problem/binary-tree-level-order-traversal/description>
## 链表
- [合并K个排序链表](src/list/merge-k-sorted-lists.js)

View File

@ -1,28 +0,0 @@
/**
* Definition for a binary tree node.
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* @param {TreeNode} root
* @return {number[][]}
*/
export const levelOrder = function (root) {
const res = []
const queue = [root]
while (queue.length) { // BFS
const tmp = []
const leave = queue.length // 记录这一层有几个
for (let i = 0; i < leave; i++) { // 一次性把固定个数的队列执行完
const node = queue.shift()
if (node.left) queue.push(node.left)
if (node.right) queue.push(node.right)
tmp.push(node.val)
}
res.push(tmp)
}
return res
}

View File

@ -1,11 +0,0 @@
import { levelOrder } from '../../src/tree/binary-tree-level-order-traversal'
import Tree from './Tree.js'
test('二叉树的层序遍历', () => {
const source = [3, 9, 20, null, null, 15, 7]
expect(levelOrder(Tree.arrToTree(source))).toEqual([
[3],
[9, 20],
[15, 7]
])
})