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

113. 路径总和 II

时间:2020-02-24 00:12:31      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:struct   没有   class   bin   push   code   子节点   solution   roo   

给定一个二叉树和一个目标和,找到所有从根节点到叶子节点路径总和等于给定目标和的路径。
说明: 叶子节点是指没有子节点的节点。

代码实现:

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
void preorder(TreeNode* node,int &path_val,vector<int> &path,vector<vector<int> > &result,int &sum)
{
    if(!node)
    return ;
    path_val += node->val;
    path.push_back(node->val);
    if(node->left==NULL && node->right == NULL && path_val == sum)
    {
        result.push_back(path);
    }
    preorder(node->left,path_val,path,result,sum);
    preorder(node->right,path_val,path,result,sum);
    path_val -= node->val;
    path.pop_back();
}
    vector<vector<int>> pathSum(TreeNode* root, int sum) {
        int path_val = 0;
        vector<vector<int> >result;
        vector<int> path;
        preorder(root,path_val,path,result,sum);
        return result;
    }
};

113. 路径总和 II

标签:struct   没有   class   bin   push   code   子节点   solution   roo   

原文地址:https://blog.51cto.com/14472348/2473108

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