LeetCode 113 [Path Sum II]
원제
두 갈래 나무와sum를 제시하여 모든 존재하는 뿌리 노드에서 잎 노드까지의 경로를 찾아낸다. 만약에 경로가sum와 같다면
예는 다음과 같다. 두 갈래 나무와sum=22
5
/ \
4 8
/ / \
11 13 4
/ \ / \
7 2 5 1
되돌아오다
[
[5,4,11,2],
[5,8,4,5]
]
문제 풀이 사고방식
전체 코드
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution(object):
def pathSum(self, root, sum):
"""
:type root: TreeNode
:type sum: int
:rtype: List[List[int]]
"""
res = []
if not root:
return res
self.helper(root, [], 0, sum, res)
return res
def helper(self, root, path, subSum, sum, res):
if root.left == None and root.right == None:
if subSum + root.val == sum:
res.append(path + [root.val])
if root.left:
self.helper(root.left, path + [root.val], subSum + root.val, sum, res)
if root.right:
self.helper(root.right, path + [root.val], subSum + root.val, sum, res)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.