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
102. 二叉树的层序遍历
/** * Definition for a binary tree node. * function TreeNode(val) { * this.val = val; * this.left = this.right = null; * } */ /** * @param {TreeNode} root * @return {number[][]} */ var levelOrder = function(root) { if(!root) return []; let queue = [root]; let result = [], depth = 0; while(queue.length > 0) { if(!result[depth]) { //初始化数组 result[depth] = []; } let length = queue.length; queue.forEach(node => { result[depth].push(node.val); //加入结点值 }); for(let i=0; i<length; i++) { queue[i].left && queue.push(queue[i].left); queue[i].right && queue.push(queue[i].right); } queue.splice(0, length); depth++; //深度加一 } return result; };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
102. 二叉树的层序遍历
The text was updated successfully, but these errors were encountered: