112. 路径总和 Java版

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public boolean hasPathSum(TreeNode root, int targetSum) {

        if(root == null)
            return false;

        if(root.left == null && root.right == null)
            return targetSum-root.val == 0;

        return hasPathSum(root.left,targetSum - root.val) || hasPathSum(root.right,targetSum - root.val);

    }
}

上一篇:python测试开发django-112.文件下载功能


下一篇:【LeetCode】#112. 路径总和