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

Posted theodoric008

tags:

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

class Solution {
public:
    void recur(TreeNode* root, const int expectNumber, int curr, vector<vector<int>>& res, vector<int>& path){
        path.push_back(root->val);
        curr += root->val;
        bool isLeaf = (root->left == nullptr && root->right == nullptr);
        if(isLeaf && curr == expectNumber){
            res.push_back(path);
        }
        if(root->left != nullptr){
            recur(root->left, expectNumber, curr, res, path);
        }
        if(root->right != nullptr){
            recur(root->right, expectNumber, curr, res, path);
        }
        path.pop_back();
    }

    vector<vector<int> > FindPath(TreeNode* root,int expectNumber) {
        vector<vector<int>> res;
        vector<int> path;
        if(root == nullptr) return res;
        int curr = 0;
        recur(root, expectNumber, curr, res, path);
        return res;
    }
};

以上是关于剑指offer 二叉树中和为某一值得路径的主要内容,如果未能解决你的问题,请参考以下文章

《剑指Offer——二叉树中和为某一值的路径》代码

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

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

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

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

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