Path Sum
AC Rate: 872/2770
My Submissions
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.
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: bool hasPathSum(TreeNode *root, int sum) { if (root == NULL) return false; if (root->left == NULL && root->right == NULL ) { if (root->val == sum) return true; else return false; } return hasPathSum(root->left, sum - root->val) || hasPathSum(root->right, sum - root->val); } };
Path Sum II
AC Rate: 691/2584
My Submissions
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] ]
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: vector<vector<int> > pathSum(TreeNode *root, int sum) { vector<vector<int> > res; if (root == NULL) return res; vector<int> v; gen(res, v, root, 0, sum); return res; } void gen(vector<vector<int> >& res, vector<int>& v, TreeNode* cur, int s, int sum) { v.push_back(cur->val); if (cur->left == NULL && cur->right == NULL) { if (s+cur->val == sum) res.push_back(v); } else { if (cur->left != NULL) gen(res, v, cur->left, s + cur->val, sum); if (cur->right!= NULL) gen(res, v, cur->right,s + cur->val, sum); } v.pop_back(); } };
相关推荐
在这段代码中,`pathSum`函数初始化路径和的HashMap,并调用`dfs`函数开始深度优先搜索。`dfs`函数递归地处理二叉树的每个节点,并使用HashMap来记录路径和的频率,以便快速查找满足条件的路径。 在面对这类二叉树...
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) { ...
java java_leetcode-112-path-sum
java java_leetcode-113-path-sumII
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...
在这段代码中,我们首先定义了一个二叉树节点的类`TreeNode`,然后定义了一个解决方案类`Solution`,里面包含`pathSum`函数。`pathSum`函数中定义了一个内部函数`dfs`用于执行深度优先搜索。`dfs`函数中,我们首先...
在“js-leetcode题解之112-path-sum.js”文件中,开发者首先需要理解题目的要求。题目的大致意思是,给定一个二叉树和一个目标和,判断该二叉树中是否存在从根节点到叶子节点的路径,使得路径上所有节点的值相加等于...
在深度优先搜索算法的应用中,LeetCode的题目112 - 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 = ...
64-minimum-path-sum问题是LeetCode上的一个动态规划算法题。这个问题要求解在一个给定的非负整数矩阵中找到一条从左上角到右下角的路径,使得路径上的数字总和最小。每次只能向右或向下移动一步。这个问题可以利用...
在探讨JavaScript中的LeetCode题解时,特别是针对“113-path-sum-ii.js”这个问题,我们首先需要了解其背后的基本算法问题和应用场景。该问题通常涉及二叉树的遍历及路径搜索算法。在给定的二叉树中,要求找出所有...
在探讨js-leetcode题解之64-minimum-path-sum.js这一主题时,我们需要了解该问题属于动态规划领域中的经典问题,即在一个二维数组中找到从左上角到右下角的最小路径和。在编程语言JavaScript中解决该问题,涉及到对...
在探讨JS-leetode题解之124-binary-tree-maximum-path-sum.js这一特定主题时,我们首先要明白几个核心概念,其中包括JavaScript编程语言、LeetCode这个在线编程题库平台,以及与之相关的题目编号124,该题旨在解决...
371 | [Sum of Two Integers](https://leetcode.com/problems/sum-of-two-integers/) | [C++](./C++/sum-of-two-integers.cpp) [Python](./Python/sum-of-two-integers.py) | _O(1)_ | _O(1)_ | Easy | LintCode | ...
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...
此外,文档还提到了另一个问题——路径总和II(Path Sum II),这是一个寻找二叉树中特定和的路径的问题。虽然没有给出完整的代码,但可以看出这个问题涉及到递归或深度优先搜索(DFS)的策略,可能需要使用回溯法来...
31. Binary Tree Maximum Path Sum:二叉树中的最大路径和。 32. Binary Tree Upside Down:将一个二叉树进行翻转。 【位操作】 33. Single Number:找出数组中唯一不出现一次的数字。 34. Single Number II:找出...
再如,"Binary Tree Maximum Path Sum"问题,要求找到二叉树中从根节点到叶子节点的最大路径和。这个问题可以通过深度优先搜索或广度优先搜索结合动态规划来解决。 GuaZiDou的解决方案不仅包含了代码实现,通常还...
- **Path Sum II**:寻找所有从根节点到叶节点的路径,其路径和等于给定的目标值。 - **Flatten Binary Tree to Linked List**:将二叉树展平为单链表。 - **Validate Binary Search Tree**:验证一个二叉树是否...