【LeetCode】112. 路径总和
程序员文章站
2022-05-20 13:18:02
...
给定一个二叉树和一个目标和,判断该树中是否存在根节点到叶子节点的路径,这条路径上所有节点值相加等于目标和。
说明: 叶子节点是指没有子节点的节点。
示例:
给定如下二叉树,以及目标和 sum = 22
,
5 / \ 4 8 / / \ 11 13 4 / \ \ 7 2 1
返回 true
, 因为存在目标和为 22 的根节点到叶子节点的路径 5->4->11->2
。
答案:
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public boolean hasPathSum(TreeNode root, int sum) {
if(root==null){
return false;
}
int t=sum-root.val;
System.out.println(t);
if(root.left==null&&root.right==null){
if(t==0) return true;
else return false;
}
return hasPathSum(root.left,t)||hasPathSum(root.right,t);
}
}
上一篇: LeetCode112. 路径总和
推荐阅读
-
【LeetCode】 112. 路径总和 递归 迭代
-
Leetcode 1091. 二进制矩阵中的最短路径 八个方向寻路最短路径 (BFS)
-
leetcode:1091. 二进制矩阵中的最短路径(广搜)
-
LeetCode 1091. 二进制矩阵中的最短路径--BFS模拟
-
[leetcode]不同路径三连击~
-
【leetcode 简单】 第一百五十题 两个列表的最小索引总和
-
荐 LeetCode 120. 三角形最小路径和 | Python
-
【每日一道算法题】Leetcode之longest-increasing-path-in-a-matrix矩阵中的最长递增路径问题 Java dfs+记忆化
-
#leetcode刷题之路40-组合总和 II
-
荐 LeetCode 112. 路径总和 | Python