leeetcode 112.Path Sum

 

  递归实现:

  

/**
 * Definition for a binary tree node.
 * 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;
        }
        
        else if(root.left == null && root.right == null && root.val == sum){
            return true;
        }
        
        else{
            return (hasPathSum(root.left,sum-root.val)||hasPathSum(root.right,sum-root.val));
        }
    }
}

 

相关文章:

  • 2021-11-27
  • 2021-07-30
  • 2021-05-19
  • 2021-12-10
  • 2021-08-25
  • 2021-07-26
猜你喜欢
  • 2021-05-12
  • 2021-11-26
相关资源
相似解决方案