输入一棵二叉树和一个整数,打印出二叉树中节点值的和为输入整数的所有路径。从树的根节点开始往下一直到叶节点所经过的节点形成一条路径。
示例:
给定如下二叉树,以及目标和 sum = 22,
5
/
4 8
/ /
11 13 4
/ \ /
7 2 5 1
返回:
[
[5,4,11,2],
[5,8,4,5]
]
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
List<List<Integer>> res;
List<Integer> path;
public List<List<Integer>> pathSum(TreeNode root, int sum) {
res = new LinkedList<>();
path = new LinkedList<>();
dfs(root, sum);
return res;
}
public void dfs(TreeNode root, int sum){
if(root == null) return;
path.add(root.val); //*********
if(sum - root.val == 0 && root.left == null && root.right == null) {
res.add(new ArrayList<>(path)); //********浅拷贝,后续会更改path
}
dfs(root.left, sum - root.val);
dfs(root.right, sum - root.val);
path.remove(path.size() - 1); // *******
}
}