剑指Offer34,二叉树中和为某一值的路径

Posted 小布丁value

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指Offer34,二叉树中和为某一值的路径相关的知识,希望对你有一定的参考价值。

https://leetcode-cn.com/problems/er-cha-shu-zhong-he-wei-mou-yi-zhi-de-lu-jing-lcof/solution/mian-shi-ti-34-er-cha-shu-zhong-he-wei-mou-yi-zh-5/

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. 二叉树中和为某一值的路径附完整可运行代码

剑指 Offer 34. 二叉树中和为某一值的路径附完整可运行代码

《剑指Offer——二叉树中和为某一值的路径》代码

剑指 Offer 34. 二叉树中和为某一值的路径-DFS

剑指offer树34.二叉树中和为某一值的路径

剑指offer树34.二叉树中和为某一值的路径