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));
        }
    }
}
复制代码

 

posted @   prog123  阅读(247)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示