Path Sum

来源:互联网 发布:微商宣传软件 编辑:程序博客网 时间:2024/05/16 12:28
/** * Definition for binary tree * public class TreeNode { *     int val; *     TreeNode left; *     TreeNode right; *     TreeNode(int x) { val = x; } * } */public class Solution {    public boolean hasPathSum(TreeNode root, int sum) {          if(root == null){              return false;          }          if(root.left == null && root.right == null && root.val == sum){              return true;          }          if(root.left != null && root.right == null){              return hasPathSum(root.left , sum - root.val);          }          if(root.right != null && root.left == null){              return hasPathSum(root.right , sum - root.val);          }          if(root.left != null && root.right != null){              return hasPathSum(root.left , sum - root.val) || hasPathSum(root.right , sum - root.val);          }          return false;    }}

0 0
原创粉丝点击