【LeetCode-树】路径总和 II
题目描述
给定一个二叉树和一个目标和,找到所有从根节点到叶子节点路径总和等于给定目标和的路径。
说明: 叶子节点是指没有子节点的节点。
示例:
给定如下二叉树,以及目标和 sum = 22,
5
/ \
4 8
/ / \
11 13 4
/ \ / \
7 2 5 1
返回:
[
[5,4,11,2],
[5,8,4,5]
]
题目链接:https://leetcode-cn.com/problems/path-sum-ii/
做这题之前可以先做下路径总和,题解。
思路
使用递归,和路径总和类似,多使用一个数组来记录当前的路径。代码如下:
/**
* 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:
vector<vector<int>> pathSum(TreeNode* root, int sum) {
vector<vector<int>> ans;
if(root==nullptr) return ans;
vector<int> path; // 单条路径
search(root, sum, path, ans);
return ans;
}
void search(TreeNode* root, int sum, vector<int> path, vector<vector<int>>& ans){
if(root==nullptr) return;
path.push_back(root->val);
if(root->left==nullptr && root->right==nullptr && sum-root->val==0){
ans.push_back(path);
return;
}
search(root->left, sum-root->val, path, ans);
search(root->right, sum-root->val, path, ans);
}
};