Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.
5
/ \
4 8
/ / \
11 13 4
/ \ / \
7 2 5 1
[
[5,4,11,2],
[5,8,4,5]
]
/**
* 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>> res;
if(!root) return res;
vector<int> path;
treePath(root, sum, res, path);
return res;
}
private:
void treePath(TreeNode* root, int sum, vector<vector<int>>& res, vector<int> path){
if(!root) return;
path.push_back(root->val);
if(!root->left && !root->right && sum == root->val){
res.push_back(path);
return;
}
treePath(root->left, sum-root->val, res, path);
treePath(root->right, sum-root->val, res, path);
}
};