题目:
题解:
思路:递归,追踪树的层次。
代码:
var levelOrder = function (root) {
var res = []
let index = 0;
travel(root, index)
function travel(roots, index) {
if (roots) {
if (!res[index]) {
res[index] = [];
}
res[index].push(roots.val)
index += 1;
travel(roots.left, index)
travel(roots.right, index)
}
}
return res
};
(ps:第二周,第四天)