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
113. 路径总和 II
/** * Definition for a binary tree node. * function TreeNode(val) { * this.val = val; * this.left = this.right = null; * } */ /** * @param {TreeNode} root * @param {number} sum * @return {number[][]} */ let results; var pathSum = function(root, sum) { if(!root) return []; results = []; let route = []; dfs(root, route, sum); return results; }; function dfs(root, route, sum) { if(!root.left && !root.right) { //根结点 route.push(root.val); //插入结点 if(route.reduce((arr, cur) => arr+=cur) == sum) results.push([...route]); route.pop(); //移除结点 return; } route.push(root.val); //选择 root.left && dfs(root.left, route, sum); root.right && dfs(root.right, route, sum); route.pop(); //撤销 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
113. 路径总和 II
The text was updated successfully, but these errors were encountered: