题解 | #二叉树中是否存在节点和为指定值的路径#

二叉树中是否存在节点和为指定值的路径

http://www.nowcoder.com/practice/508378c0823c423baa723ce448cbfd0c

    public boolean hasPathSum (TreeNode root, int sum) {
        dfs(root, sum);
        return flag;
    }
    public void dfs(TreeNode root, int rest ){    //rest记录剩余值
        if(root == null || flag) return;

        //当叶节点的值与剩余值相等时,true
        if(root.val == rest &&  root.left == null && root.right == null){ 
            flag = true;
            return;
        }
        dfs(root.left , rest - root.val);
        dfs(root.right , rest - root.val);   
    }
全部评论

相关推荐

小谷围鸡肉卷阿姨:+1,腾子投完一动不动
点赞 评论 收藏
分享
躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务