当前位置:   article > 正文

leetcode437. 路径总和 III python_437. 路径总和 iii python3

437. 路径总和 iii python3

记录前缀和的解法,一开始只想到了暴力解法

class Solution(object):
    def pathSum(self, root, sum):
        """
        :type root: TreeNode
        :type sum: int
        :rtype: int
        """
        self.cnt=0
        currsum=0
        self.presumlist=[]

        def rec(root,sum,currsum):
            if not root:
                return self.cnt
            currsum+=root.val
            if currsum==sum:
                self.cnt+=1
            for presum in self.presumlist:
                if currsum-presum==sum:
                    self.cnt+=1
            self.presumlist.append(currsum)
            rec(root.left,sum,currsum)
            # print(self.presumlist)
            rec(root.right,sum,currsum)
            self.presumlist.pop()
            return self.cnt
        return rec(root,sum,currsum)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/422139
推荐阅读
相关标签
  

闽ICP备14008679号