21.03.12 LeetCode113. 路径总和 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
输出:[]
class Solution { Deque<Integer> path = new LinkedList<Integer>(); List<List<Integer>>res = new LinkedList<List<Integer>>(); public List<List<Integer>> pathSum(TreeNode root, int targetSum) { dfs(root,targetSum); return res; } public void dfs(TreeNode root,int tar) { //第一件事是写base case if(root==null) return; path.offerLast(root.val); tar-=root.val; //如果此时root为叶子结点且tar==0,证明已经走到了题解路径 if(root.left==null && root.right == null && tar==0) res.add(new LinkedList<>(path)); dfs(root.left,tar); dfs(root.right,tar); path.pollLast(); } }