LeetCode 0113. Path Sum II路径总和 II【Medium】【Python】【回溯】
Problem
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.
Note: A leaf is a node with no children.
Example:
Given the below binary tree and sum = 22
,
5 / \ 4 8 / / \ 11 13 4 / \ / \ 7 2 5 1
Return:
[ [5,4,11,2], [5,8,4,5] ]
问题
给定一个二叉树和一个目标和,找到所有从根节点到叶子节点路径总和等于给定目标和的路径。
说明: 叶子节点是指没有子节点的节点。
示例:
给定如下二叉树,以及目标和 sum = 22,
5 / \ 4 8 / / \ 11 13 4 / \ / \ 7 2 5 1
返回:
[ [5,4,11,2], [5,8,4,5] ]
思路
回溯
先序遍历二叉树,记录路径。 符合条件的加入 res 中。 回溯记得要删除当前节点。
时间复杂度: O(n),n 为二叉树节点个数。
空间复杂度: O(n),最坏情况,二叉树退化成单链表。
Python3代码
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: def pathSum(self, root: TreeNode, sum: int) -> List[List[int]]: res, path = [], [] # 先序遍历:根左右 def recur(root, target): if not root: return path.append(root.val) target -= root.val # 找到路径 if target == 0 and not root.left and not root.right: res.append(list(path)) # 复制了一个 path 加入到 res 中,这样修改 path 不影响 res recur(root.left, target) recur(root.right, target) # 向上回溯,需要删除当前节点 path.pop() recur(root, sum) return res