对二叉树的基本java示例有疑问:给定二叉树,找到路径中节点总和等于给定数字目标的所有路径。(有效路径是从根节点到任何一个叶节点。
为什么我们在通过左右节点时需要path.remove(path.size() - 1);
?
以下是代码示例:
public class Solution {
public List<List<Integer>> binaryTreePathSum(TreeNode root, int target) {
List<List<Integer>> result = new ArrayList<>();
if (root == null) {
return result;
}
ArrayList<Integer> path = new ArrayList<Integer>();
path.add(root.val);
helper(root, path, root.val, target, result);
return result;
}
private void helper(TreeNode root,
ArrayList<Integer> path,
int sum,
int target,
List<List<Integer>> result) {
// meet leaf
if (root.left == null && root.right == null) {
if (sum == target) {
result.add(new ArrayList<Integer>(path));
}
return;
}
// go left
if (root.left != null) {
path.add(root.left.val);
helper(root.left, path, sum + root.left.val, target, result);
path.remove(path.size() - 1);
}
// go right
if (root.right != null) {
path.add(root.right.val);
helper(root.right, path, sum + root.right.val, target, result);
path.remove(path.size() - 1);
}
}
}
答案 0 :(得分:1)
在这种情况下,路径是临时工具。在访问左边并开始处理权限之后,如果编程没有从路径清除 root.right.val ,则会出错。