回溯算法

二叉树根节点到叶子节点和为指定值的路径

http://www.nowcoder.com/questionTerminal/840dd2dc4fbd4b2199cd48f2dadf930a

class Solution {
public:
/*
*
* @param root TreeNode类
* @param sum int整型
* @return int整型vector<vector<>>
*/
void DFS(vector<vector<int>>& ans,vector<int> res,TreeNode</int></int>
root,int sum)
{
if(!root) return ;
res.push_back(root->val);
if(root->val == sum && !root->left && !root->right)
ans.push_back(res);
DFS(ans,res,root->left,sum-root->val);
DFS(ans,res,root->right,sum-root->val);
}

vector<vector<int> > pathSum(TreeNode* root, int sum) {
    vector<vector<int>> ans;
    vector<int> res;
    DFS(ans,res,root,sum);
    return ans;
}

};

全部评论

相关推荐

10-14 10:56
已编辑
长沙学院 嵌入式软件开发
痴心的00后拿到了ssp:hr面挂了,无所谓了反正不去😃
点赞 评论 收藏
分享
11-11 14:21
西京学院 C++
无敌混子大王:首先一点,不管学校层次怎么样,教育经历放在第一页靠上位置,第一页看不到教育经历,hr基本直接扔掉了
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务