当前位置:   article > 正文

Python | Leetcode Python题解之第129题求根节点到叶节点数字之和

Python | Leetcode Python题解之第129题求根节点到叶节点数字之和

题目:

题解:

  1. class Solution:
  2. def sumNumbers(self, root: TreeNode) -> int:
  3. if not root:
  4. return 0
  5. total = 0
  6. nodeQueue = collections.deque([root])
  7. numQueue = collections.deque([root.val])
  8. while nodeQueue:
  9. node = nodeQueue.popleft()
  10. num = numQueue.popleft()
  11. left, right = node.left, node.right
  12. if not left and not right:
  13. total += num
  14. else:
  15. if left:
  16. nodeQueue.append(left)
  17. numQueue.append(num * 10 + left.val)
  18. if right:
  19. nodeQueue.append(right)
  20. numQueue.append(num * 10 + right.val)
  21. return total
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/685020
推荐阅读
相关标签
  

闽ICP备14008679号