树中是否存在路径和为 sum leecode java

时间:2014-07-01 13:09:20   收藏:0   阅读:198

https://oj.leetcode.com/problems/path-sum/

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

  

树中是否存在路径和为 sum leecode java,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!