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

Posted 双马尾是老公的方向盘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer---二叉树中和为某一值的路径相关的知识,希望对你有一定的参考价值。

/*
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---二叉树中和为某一值的路径的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

剑指offer二十四之二叉树中和为某一值的路径

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

Java 剑指offer(34) 二叉树中和为某一值的路径