본문 바로가기
Problem Solving/리트코드

[리트코드 leetcode] 1038. Binary Search Tree to Greater Sum Tree

by ggyongi 2021. 4. 12.
반응형

leetcode.com/problems/binary-search-tree-to-greater-sum-tree/

 

Binary Search Tree to Greater Sum Tree - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

 

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    sum =0
    def bstToGst(self, root: TreeNode) -> TreeNode:
        
        def recur(node):
            if not node:
                return 
            
            node.right = recur(node.right)
            
            self.sum += node.val
            node.val = self.sum
            
            node.left = recur(node.left)
            
            return node
        
        return recur(root)
 

비전공자 네카라 신입 취업 노하우

시행착오 끝에 얻어낸 취업 노하우가 모두 담긴 전자책!

kmong.com

댓글