문제: https://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
오른쪽 -> 가운데 -> 왼쪽 순서로 돌면 됩니다!
class Solution {
var value = 0
func bstToGst(_ root: TreeNode?) -> TreeNode? {
if root != nil {
bstToGst(root!.right)
value += root!.val
root!.val = value
bstToGst(root!.left)
}
return root
}
}
'알고리즘' 카테고리의 다른 글
[Swift] LeetCode - 134. Gas Station (0) | 2022.02.28 |
---|---|
[Swift] LeetCode - 136. Single Number (0) | 2022.02.17 |
[Swift] LeetCode - 297. Serialize and Deserialize Binary Tree (0) | 2022.02.17 |
[Swift] LeetCode - 207. Course Schedule (0) | 2022.02.16 |
[Swift] LeetCode - 78. Subsets (0) | 2022.02.16 |
댓글