Leetcode——112. 路徑總和
給定一個二叉樹和一個目標和,判斷該樹中是否存在根節點到葉子節點的路徑,這條路徑上所有節點值相加等於目標和。
說明: 葉子節點是指沒有子節點的節點。
示例:
給定如下二叉樹,以及目標和 sum = 22,
5
/ \
4 8
/ / \
11 13 4
/ \ \
7 2 1
返回 true, 因為存在目標和為 22 的根節點到葉子節點的路徑 5->4->11->2。
思路:遞迴,需要注意遞迴的終止點,如果左右子樹都為None,直接返回,然後遞迴。
class Solution(object):
def hasPathSum(self, root, sum):
"""
:type root: TreeNode
:type sum: int
:rtype: bool
"""
if root == None:
return False
if root.left==None and root.right==None:
return root.val==sum
if (self.hasPathSum(root.left,sum-root.val)):
return True
if (self.hasPathSum(root.right,sum-root.val)):
return True
return False
相關文章
- Day18 | 513. 找樹左下角的值 | 112.路徑總和、113.路徑總和ii
- LeetCode - 112 - 路徑總和LeetCode
- LeetCode - 113 - 路徑總和 IILeetCode
- Leetcode——113. 路徑總和 IILeetCode
- Leetcode——437. 路徑總和 IIILeetCode
- LeetCode-113-路徑總和 IILeetCode
- LeetCode每日一題: 路徑總和(No.112)LeetCode每日一題
- 【LeetCode擊敗99%+】二叉樹路徑總和LeetCode二叉樹
- 程式碼隨想錄演算法訓練營第十八天| 513. 找樹左下角的值 112. 路徑總和 113. 路徑總和 II演算法
- LeetCode 112. Path SumLeetCode
- 二叉樹路徑總和二叉樹
- [Leetcode]931.下降路徑最小和LeetCode
- 寫不出來的深度優先搜尋----leetcode113 路徑總和LeetCode
- dede路徑總結
- 每日一道演算法題--leetcode 112--路徑總和--python演算法LeetCodePython
- PHP中require和include路徑問題總結PHPUI
- 路徑中./和../和/
- 檔案路徑總結
- 日誌路徑彙總
- 每日一道演算法題--leetcode 113--路徑總和II--python演算法LeetCodePython
- 檔案絕對路徑和相對路徑
- Jsp相對路徑和絕對路徑JS
- html中的路徑的介紹:絕對路徑和相對路徑HTML
- Linux檔案的路徑定位-相對路徑和絕對路徑Linux
- nodejs路徑處理方法和絕對路徑NodeJS
- 絕對路徑和相對路徑的區別,
- 絕對路徑和相對路徑的區別
- 檔案的相對路徑和絕對路徑以及根相對路徑
- 05_Linux相對路徑和絕對路徑Linux
- [Leetcode]120.三角形路徑最小和LeetCode
- LeetCode-064-最小路徑和LeetCode
- 檔案路徑問題( ./ 和 ../ 和 @/ )
- JSP 和 Servlet 中的絕對路徑和相對路徑問題JSServlet
- oracle11g trace路徑和diagnostics路徑的變化Oracle
- C#檔案路徑操作總結
- LeetCode 64號問題 最小路徑和LeetCode
- python中的路徑問題彙總Python
- 從request獲取各種路徑總結