欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

leetcode 112 Path Sum

程序员文章站 2024-01-05 12:11:04
...

Java:

class Solution {
    public boolean hasPathSum(TreeNode root, int sum) {
        if (root == null ) return false;
        if (root.left == null && root.right == null && sum-root.val ==0 ) return true;
        sum = sum - root.val;
        return hasPathSum(root.left, sum) || hasPathSum(root.right, sum);
    }
}
相关标签: leetcode java