题解 | #牛的奶量统计#

牛的奶量统计

https://www.nowcoder.com/practice/213c039668804add9513bbee31370248

本题考察知识点:二叉树遍历、递归、回溯

解题思路:使用currentSum记录当前路径上的所有节点数值之和,在递归到当前节点时,currentSum加上当前节点的值,递归跳出当前节点时,currentSum再将当前节点值减去。最后到达叶子节点时判断currentSum是否是目标值即可

本题解所用语言:java

import java.util.*;

/*
 * public class TreeNode {
 *   int val = 0;
 *   TreeNode left = null;
 *   TreeNode right = null;
 *   public TreeNode(int val) {
 *     this.val = val;
 *   }
 * }
 */

public class Solution {
    int targetSum;
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param root TreeNode类 
     * @param targetSum int整型 
     * @return bool布尔型
     */
    public boolean hasPathSum (TreeNode root, int targetSum) {
        // write code here
        this.targetSum = targetSum;
        return checkPath(root, 0);
    }

    public boolean checkPath(TreeNode root, int currentSum) {
        if (root == null) {
            return false;
        }
        currentSum += root.val;
        if (root.left == null && root.right == null) {
            return currentSum == targetSum;
        }
        return checkPath(root.left, currentSum) || checkPath(root.right, currentSum);
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-09 16:15
我应届生,去年10月份开始在这家公司实习,到今年10月份正好一年想(实习+试用期),在想要不要提前9月份就离职,这样好找工作些,但又差一个月满一年,又怕10月份国庆回来离职,容易错过了下半年的金九银十,到年底容易gap到年后
小破站_程序员YT:说这家公司不好吧,你干了快一年 说这家公司好吧,你刚毕业就想跑路说你不懂行情吧,你怕错过金九银十说 你懂行情吧,校招阶段在实习,毕业社招想换工作 哥们,我该怎么劝你留下来呢
应届生,你找到工作了吗
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务