113. 路径总和 II
题目介绍
给你二叉树的根节点 root 和一个整数目标和 targetSum ,找出所有 从根节点到叶子节点 路径总和等于给定目标和的路径。
叶子节点 是指没有子节点的节点。
示例 1:
输入:root = [5,4,8,11,null,13,4,7,2,null,null,5,1], targetSum = 22
输出:[[5,4,11,2],[5,8,4,5]]
示例 2:
输入:root = [1,2,3], targetSum = 5
输出:[]
示例 3:
输入:root = [1,2], targetSum = 0
输出:[]
提示:
树中节点总数在范围 [0, 5000] 内
-1000 <= Node.val <= 1000
-1000 <= targetSum <= 1000
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/path-sum-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
回溯法
class Solution {
public:
void path(TreeNode* root, int targetSum, int nowSum, vector<vector<int>>& res_all, vector<int>& res){
if(!root->left && !root->right){ // 叶子节点
if(root->val + nowSum == targetSum){
res.push_back(root->val);
res_all.push_back(res);
res.pop_back();
}
return; //如果是叶子结点就不需要再往下查了
}
if(root->left){
res.push_back(root->val);
path(root->left, targetSum, nowSum+root->val, res_all, res);
res.pop_back();
}
if(root->right){
res.push_back(root->val);
path(root->right, targetSum, nowSum+root->val, res_all, res);
res.pop_back();
}
return;
}
vector<vector<int>> pathSum(TreeNode* root, int targetSum) {
if(!root) return {};
vector<vector<int>> res_all;
vector<int> res;
path(root, targetSum, 0, res_all, res);
return res_all;
}
};