`

Path Sum

阅读更多
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.

For example:
Given the below binary tree and sum = 22,
              5
             / \
            4   8
           /    /  \
         11  13  4
         /  \         \
        7    2       1
return true, as there exist a root-to-leaf path 5->4->11->2 which sum is 22.

给定了一颗二叉树和一个整数sum,要求我们查找树中是否存在一条从根到叶子节点的和为sum的路径。我们从根节点开始搜索,用DFS,当遍历到一个节点时,从根节点到当前节点的和正好为sum,这时我们还要查看当前节点是否为叶子节点,如果为叶子节点就返回true,否则继续搜索。代码如下:
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public boolean hasPathSum(TreeNode root, int sum) {
        if(root == null) return false;
        if(sum == root.val && root.left == null && root.right == null) return true;
        return hasPathSum(root.left, sum - root.val) || hasPathSum(root.right, sum - root.val);
    }
}
分享到:
评论

相关推荐

    java-leetcode题解之Path Sum III.java

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

    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<int> ret) { if (current == null) { ...

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

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

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

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

    python-leetcode题解之112-Path-Sum

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

    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...

    【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...

    手稿_V1.0110

    在此过程中,可以使用`__pathSum`函数进行DFS来查找以当前节点为起点的满足条件的路径。 2. **DFS(深度优先搜索)**:`__pathSum`函数通过递归遍历从当前节点开始的所有可能分支。每次进入新的节点,都会更新当前...

    二叉树中和为某一值的路径1

    类中有一个公开方法`pathSum`,这是主要的接口函数,接受一个树的根节点`root`和目标和`sum`作为参数。 `pathSum`函数首先检查根节点是否为空,如果为空则直接返回空路径列表。然后调用`recursion`辅助函数进行深度...

    算法(c++)——数字三角形问题.rar

    在上述代码中,`maxPathSum`函数是核心,它接收一个表示数字三角形的二维向量,返回最大路径和。`main`函数则负责读取输入数据,初始化三角形,并调用`maxPathSum`计算结果。 值得注意的是,实际问题可能涉及到更...

    18_路径总和||.pdf

    public List<List<Integer>> pathSum(TreeNode root, int targetSum) { dfs(root, targetSum); return ret; } public void dfs(TreeNode root, int targetSum) { // ...(其他代码) } } ``` 在DFS中,时间...

    java-leetcode-112-path-sum

    java java_leetcode-112-path-sum

    python-leetcode面试题解之第124题二叉树中的最大路径和-题解.zip

    `maxPathSum`函数计算最大路径和,它使用了一个全局变量`global_max`来记录全局的最大路径和,以及一个内部的`dfs`函数进行深度优先搜索。`dfs`函数返回以当前节点为根的最大路径和,同时更新`max_path`。 在求职...

    java-leetcode-113-path-sumII

    java java_leetcode-113-path-sumII

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

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

    最新整理]微软等公司数据结构+算法面试100题[第1-80题]

    vector<vector<int>> pathSum(TreeNode* root, int sum) { vector<vector<int>> result; vector<int> path; dfs(root, sum, path, result); return result; } void dfs(TreeNode* node, int target, vector...

    微软数据结构算法面试题

    int pathSum = std::accumulate(path.begin(), path.end(), 0); // 如果到达叶子结点且路径和等于期望值 if (!root->m_pLeft && !root->m_pRight && pathSum == expectNumber) result.push_back(path); Find...

    数字三角形(C语言编写) 算法

    在主函数中,提供数字三角形的输入数据,并调用maxPathSum函数求解最大路径和。 数字三角形问题不仅锻炼了程序员的逻辑思维能力,也是对动态规划思想的一种实践应用。通过理解和掌握这种算法,可以进一步拓展到其他...

Global site tag (gtag.js) - Google Analytics