LeetCode112:路径总和

    技术2022-07-20  67

    /** * 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; } sum -= root.val; if(root.left == null && root.right == null){ return (sum == 0); } else{ return hasPathSum(root.left,sum)|| hasPathSum(root.right,sum); } } }

     

    Processed: 0.008, SQL: 9