`

Path Sum II

阅读更多
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.

For example:
Given the below binary tree and sum = 22,
              5
             / \
            4   8
           /    /  \
         11  13 4
         /  \      /  \
        7   2   5   1
return
[
   [5,4,11,2],
   [5,8,4,5]
]

与Path Sum相比,这道题要求我们输出所有可能的结果,我们同样采用DFS,因为要输出所有可能的结果,我们用回溯法来记录,当找到符合条件的路径就记录下来,然后回溯,继续查找其它的路径。代码如下:
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<List<Integer>> pathSum(TreeNode root, int sum) {
        List<List<Integer>> result = new ArrayList<List<Integer>>();
        LinkedList<Integer> list = new LinkedList<Integer>();
        if(root == null) return result;
        getPath(root, 0, sum, result, list);
        return result;
    }
    public void getPath(TreeNode root, int count, int sum, List<List<Integer>> result, LinkedList<Integer> list) {
        if(root == null) return;
        count += root.val;
        list.add(root.val);
        if(count == sum && root.left == null && root.right == null) {
            result.add(new LinkedList<Integer>(list));
            list.removeLast();
            return;
        }
        getPath(root.left, count, sum, result, list);
        getPath(root.right, count, sum, result, list);
        list.removeLast();
    }
}
0
0
分享到:
评论

相关推荐

    【leetcode】【medium】113. Path Sum II

    113. Path Sum II Given a binary tree and a sum, find all root-to-leaf paths where each path’s sum equals the given sum. Note: A leaf is a node with no children. Example: Given the below binary tree...

    java-leetcode-113-path-sumII

    java java_leetcode-113-path-sumII

    python-leetcode题解之113-Path-Sum-II

    在这段代码中,我们首先定义了一个二叉树节点的类`TreeNode`,然后定义了一个解决方案类`Solution`,里面包含`pathSum`函数。`pathSum`函数中定义了一个内部函数`dfs`用于执行深度优先搜索。`dfs`函数中,我们首先...

    java-leetcode题解之Path Sum III.java

    在这段代码中,`pathSum`函数初始化路径和的HashMap,并调用`dfs`函数开始深度优先搜索。`dfs`函数递归地处理二叉树的每个节点,并使用HashMap来记录路径和的频率,以便快速查找满足条件的路径。 在面对这类二叉树...

    js-leetcode题解之113-path-sum-ii.js

    在探讨JavaScript中的LeetCode题解时,特别是针对“113-path-sum-ii.js”这个问题,我们首先需要了解其背后的基本算法问题和应用场景。该问题通常涉及二叉树的遍历及路径搜索算法。在给定的二叉树中,要求找出所有...

    Leetcode打谱集.pdf

    此外,文档还提到了另一个问题——路径总和II(Path Sum II),这是一个寻找二叉树中特定和的路径的问题。虽然没有给出完整的代码,但可以看出这个问题涉及到递归或深度优先搜索(DFS)的策略,可能需要使用回溯法来...

    LeetCode -- Path Sum III分析及实现方法

    public int PathSum(TreeNode root, int sum) { _count = 0; _sum = sum; Travel(root, new List()); return _count; } private void Travel(TreeNode current, List&lt;int&gt; ret) { if (current == null) { ...

    java-leetcode-112-path-sum

    java java_leetcode-112-path-sum

    Leetcode题目+解析+思路+答案.pdf

    - **Path Sum II**:寻找所有从根节点到叶节点的路径,其路径和等于给定的目标值。 - **Flatten Binary Tree to Linked List**:将二叉树展平为单链表。 - **Validate Binary Search Tree**:验证一个二叉树是否...

    js-leetcode题解之112-path-sum.js

    题目“path-sum”是树结构中的经典问题,常用来考查程序员对深度优先搜索(DFS)或广度优先搜索(BFS)算法的理解和应用能力。在JavaScript(简称JS)这门广泛使用的编程语言中,解决“112-path-sum”题目不仅能够...

    python-leetcode题解之124-Binary-Tree-Maximum-Path-Sum

    def maxPathSum(self, root: TreeNode) -&gt; int: self.max_sum = float('-inf') def max_gain(node): if not node: return 0 # 递归计算左右子树的最大贡献值,只有在最大贡献值大于0时才计算 left_gain = ...

    md5sum windows版

    至于压缩包内的文件`md5sum.exe`,它是这个工具的可执行文件,用户只需将其解压并放在系统的PATH环境变量所包含的任何目录下,或者直接在命令行指定路径调用,即可开始使用。 需要注意的是,尽管MD5在过去的很多年...

    Leetcode代码以及解答(2)

    Path Sum II **知识点:** - **问题描述:** - 给定一个二叉树和一个目标和,返回所有和为目标值的根节点到叶子节点的路径。 - **解决方案分析:** - **深度优先搜索(DFS):** - 从根节点开始 DFS。 - ...

    python-leetcode题解之112-Path-Sum

    在深度优先搜索算法的应用中,LeetCode的题目112 - Path Sum提供了一个很好的练习案例。这个题目要求解的是在一个二叉树中是否存在一条从根节点到叶子节点的路径,使得这些节点上的值之和等于一个给定的目标值。为了...

    C语言-leetcode题解之64-minimum-path-sum.c

    C语言实现64-minimum-path-sum问题的关键在于理解动态规划的原理和逻辑,能够合理地初始化和更新dp数组,并且熟悉C语言的基本语法和数组操作。通过这类编程题目的练习,可以加深对C语言编程技巧和算法思想的理解。

    js-leetcode题解之64-minimum-path-sum.js

    在探讨js-leetcode题解之64-minimum-path-sum.js这一主题时,我们需要了解该问题属于动态规划领域中的经典问题,即在一个二维数组中找到从左上角到右下角的最小路径和。在编程语言JavaScript中解决该问题,涉及到对...

    LeetCode — Path Sum III分析及实现方法

    LeetCode — Path Sum III分析及实现方法 题目描述: You are given a binary tree in which each node contains an integer value. Find the number of paths that sum to a given value. The path does not need...

    leetcode338-algorithm-training:leetcodecjava

    第 338 章力码解决方案 问题编号 标题 困难 C Java Ruby 338 中等的 [✓](/src/338 计数位/solution.c) 104 简单的 [✓](/src/104 ...II/solution.c) ...Path Sum II/solution.java) 258 简单的 [✓](/

    sha1.exe, 计算,生成SHA1SUM或SHA1SUM.asc

    命令行工具. 计算SHA1SUM,生成SHA1SUM文件.校验SHA1SUM文件. 如果安装了GnuPG,并在PATH中,对SHA1SUM进行明文签名(生成SHA1SUM.asc)或对其验证.

Global site tag (gtag.js) - Google Analytics