437. Path Sum III
程序员文章站
2022-04-25 10:40:53
...
Problem
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 to start or end at the root or a leaf, but it must go downwards (traveling only from parent nodes to child nodes).
The tree has no more than 1,000 nodes and the values are in the range -1,000,000 to 1,000,000.
Example
Solution
使用两个递归
- 外层递归用于遍历树中的每一个节点
- 内层递归用于求从当前节点开始的路径数
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int pathSum(TreeNode* root, int sum) {
if(!root)
return 0;
return paths(root,sum) + pathSum(root->left,sum) + pathSum(root->right,sum);
}
int paths(TreeNode* root,int sum)
{
if(!root)
return 0;
int ret = 0;
//因为并不要求以叶子节点结束
if(root->val == sum)
{
++ret;
}
ret += paths(root->left,sum - root->val);
ret += paths(root->right,sum - root->val);
return ret;
}
};
上一篇: 左边定宽,右边自适应布局的几种方法
下一篇: 0307-屏幕适配
推荐阅读
-
[LeetCode] Unique Paths && Unique Paths II && Minimum Path Sum (动态规划之 Matrix DP )
-
LeetCode学习笔记(6) 第124题 Binary Tree Maximum Path Sum
-
LeetCode112.Path Sum
-
Combination Sum III
-
112. 路径总和,113. 路径总和 II,437. 路径总和 III
-
Path Sum,Path Sum II,Path Sum III总结
-
Path Sum
-
437. Path Sum III
-
437. Path Sum III
-
LeetCode112.Path Sum