美文网首页
112. 路径总和

112. 路径总和

作者: 上杉丶零 | 来源:发表于2020-07-07 17:55 被阅读0次
    package leetcode;
    
    public class LeetCode {
        public static void main(String[] args) {
        }
    }
    
    class Solution {
        public boolean hasPathSum(TreeNode root, int sum) {
            if (root == null) {
                return false;
            }
    
            if (root.left == null && root.right == null) {
                return root.val == sum;
            }
    
            return hasPathSum(root.left, sum - root.val) || hasPathSum(root.right, sum - root.val);
        }
    }
    
    class TreeNode {
        int val;
        TreeNode left;
        TreeNode right;
    
        TreeNode(int x) {
            val = x;
        }
    }
    
    image.png

    相关文章

      网友评论

          本文标题:112. 路径总和

          本文链接:https://www.haomeiwen.com/subject/rjjzqktx.html