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

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

时间:2018-09-02 20:54:54      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:number   off   find   res   const   amp   ber   back   bool   

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 二叉树中和为某一值得路径

标签:number   off   find   res   const   amp   ber   back   bool   

原文地址:https://www.cnblogs.com/theodoric008/p/9575202.html

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