码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer---二叉树中和为某一值的路径

时间:2017-08-07 00:22:58      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:vector   push   null   oid   cto   int   node   ==   off   

/*
struct TreeNode {
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
    TreeNode(int x) :
            val(x), left(NULL), right(NULL) {
    }
};*/
class Solution {
public:
    vector<vector<int> > FindPath(TreeNode* root,int expectNumber) {
        vector<vector<int> >res;
        vector<int> cur;
        path(root,expectNumber,res,cur);
        return res;
    }
     void path(TreeNode *root,int sum, vector<vector<int> >&res,vector<int> &cur)
     {
        if(root==NULL)
            return ;
        cur.push_back(root->val);
        if(root->left==NULL&&root->right==NULL)
            {
            if(sum==root->val)
                res.push_back(cur);
        }
        if(root->left)
        path(root->left,sum-root->val,res,cur);
        if(root->right)
        path(root->right,sum-root->val,res,cur);
        cur.pop_back();
    }
};

 

剑指offer---二叉树中和为某一值的路径

标签:vector   push   null   oid   cto   int   node   ==   off   

原文地址:http://www.cnblogs.com/159269lzm/p/7296366.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!