题解 | #二叉树中和为某一值的路径(一)#

二叉树中和为某一值的路径(一)

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

方法1.还是用递归的方法实现

方法2.二叉树的层序遍历

方法3.深度优先搜索

方法1代码:

class Solution:
    def hasPathSum(self , root: TreeNode, sum: int) -> bool:
        # write code here
        if not root:
            return False
        elif root.val == sum and not root.left and not root.right:
            return True
        left_flag = self.hasPathSum(root.left, sum - root.val)
        right_flag = self.hasPathSum(root.right, sum - root.val)
        return left_flag or right_flag
全部评论

相关推荐

10-18 13:01
已编辑
西安理工大学 C++
小米内推大使:建议技能还是放上面吧,hr和技术面试官第一眼想看的应该是技能点和他们岗位是否匹配
点赞 评论 收藏
分享
喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务