LeetCode #112 路径总和 树 递归
程序员文章站
2022-03-03 10:55:41
...
LeetCode #112 路径总和 树
题目描述
给定一个二叉树和一个目标和,判断该树中是否存在根节点到叶子节点的路径,这条路径上所有节点值相加等于目标和。
说明: 叶子节点是指没有子节点的节点。
示例:
给定如下二叉树,以及目标和 sum = 22
,
5
/ \
4 8
/ / \
11 13 4
/ \ \
7 2 1
返回 true, 因为存在目标和为 22 的根节点到叶子节点的路径 5->4->11->2。
方法一:递归
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def hasPathSum(self, root: TreeNode, sum: int) -> bool:
if not root : return False
sum -= root.val
if(not root.left and not root.right):
return sum == 0
return self.hasPathSum(root.left, sum) or self.hasPathSum(root.right, sum)
- 时间复杂度:
- 空间复杂度:最坏 ,最好
方法二:迭代
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def hasPathSum(self, root: TreeNode, sum: int) -> bool:
node_stack = [root]
sum_stack = [sum]
while node_stack:
node = node_stack.pop()
sum = sum_stack.pop()
if not node:
continue
sum -= node.val
if sum == 0 and not node.left and not node.right:
return True
node_stack.append(node.left)
node_stack.append(node.right)
sum_stack.append(sum)
sum_stack.append(sum)
return False
上一篇: 【leetcode】94 二叉树的中序遍历(二叉树)
下一篇: [94] 二叉树的中序遍历
推荐阅读
-
荐 LeetCode 112. 路径总和 | Python
-
leetcode 113 剑指offer 面试题34. 二叉树中和为某一值的路径(python3)
-
leetcode 101. 对称二叉树 递归解法
-
【LeetCode】二叉树各种遍历大汇总(秒杀前序、中序、后序、层序)递归 & 迭代
-
-在二元树中找出和为某一值的所有路径--捡捡递归的使用
-
-在二元树中找出和为某一值的所有路径--捡捡递归的使用
-
【小白用python刷Leetcode】112. 路径总和
-
C++实现LeetCode(124.求二叉树的最大路径和)
-
LeetCode刷题(117)~二叉树的中序遍历【递归|迭代】
-
LeetCode 94. 二叉树的中序遍历(递归)(迭代)