题解 | #二叉树中和为某一值的路径(二)#

二叉树中和为某一值的路径(二)

http://www.nowcoder.com/practice/b736e784e3e34731af99065031301bca

/*
struct TreeNode {
	int val;
	struct TreeNode *left;
	struct TreeNode *right;
	TreeNode(int x) :
			val(x), left(NULL), right(NULL) {
	}
};*/
class Solution {
public:
    void dfs(TreeNode* root, int expectNumber, vector<vector<int>>& res, vector<int> ans, int num) {
        if(!root)
            return;
        ans.push_back(root->val);
        num += root->val;
        if(!root->left && !root->right) {
            if(num == expectNumber) {
                res.push_back(ans);
                num -= ans.back();
                ans.pop_back();
            }
            return;
        }
        dfs(root->left, expectNumber, res, ans, num);
        dfs(root->right, expectNumber, res, ans, num);
    }
    vector<vector<int>> FindPath(TreeNode* root,int expectNumber) {
        vector<vector<int>> res;
        vector<int> ans;
        int num = 0;
        dfs(root, expectNumber, res, ans, num);
        return res;
    }
};
全部评论

相关推荐

ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
球球别再泡了:坏,我单9要了14
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务