剑指Offer34,二叉树中和为某一值的路径
Posted 小布丁value
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指Offer34,二叉树中和为某一值的路径相关的知识,希望对你有一定的参考价值。
public class Day10271 {
LinkedList<List<Integer>> res= new LinkedList<>();
LinkedList<Integer> path= new LinkedList<>();
public List<List<Integer>> pathSum(TreeNode root, int target){
recur(root,target);
return res;
}
public void recur(TreeNode root,int tar){
if(root==null) return;
path.add(root.val);
tar-=root.val;
if(tar==0&&root.left==null&&root.right==null){
res.add(new LinkedList(path));
}
recur(root.left,tar);
recur(root.right,tar);
path.removeLast();
}
}
以上是关于剑指Offer34,二叉树中和为某一值的路径的主要内容,如果未能解决你的问题,请参考以下文章
剑指 Offer 34. 二叉树中和为某一值的路径附完整可运行代码