Leetcode刷题Python538. 把二叉搜索树转换为累加树

Posted Better Bench

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题Python538. 把二叉搜索树转换为累加树相关的知识,希望对你有一定的参考价值。

1 题目

给出二叉 搜索 树的根节点,该树的节点值各不相同,请你将其转换为累加树(Greater Sum Tree),使每个节点 node 的新值等于原树中大于或等于 node.val 的值之和。

提醒一下,二叉搜索树满足下列约束条件:

节点的左子树仅包含键 小于 节点键的节点。
节点的右子树仅包含键 大于 节点键的节点。
左右子树也必须是二叉搜索树。
注意:本题和 1038: https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree/ 相同

示例 1:

输入:[4,1,6,0,2,5,7,null,null,null,3,null,null,null,8]
输出:[30,36,21,36,35,26,15,null,null,null,33,null,null,null,8]

2 解析

本题中要求我们将每个节点的值修改为原来的节点值加上所有大于它的节点值之和。这样我们只需要反序中序遍历该二叉搜索树,记录过程中的节点值之和,并不断更新当前遍历到的节点的节点值,即可得到题目要求的累加树。

3 Python实现

class Solution:
    def convertBST(self, root: Optional[TreeNode]) -> Optional[TreeNode]:
        def dfs(node):
            nonlocal total
            if node:
                dfs(node.right)
                total+=node.val
                node.val = total
                dfs(node.left)
        total =0
        dfs(root)
        return root

以上是关于Leetcode刷题Python538. 把二叉搜索树转换为累加树的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 538. 把二叉搜索树转换为累加树

*Leetcode 538. 把二叉搜索树转换为累加树

[LeetCode]538. 把二叉搜索树转换为累加树

538-把二叉搜索树转换为累加树

LeetCode 二叉树专项把二叉搜索树转换为累加树(538)

leetcode 538. 把二叉搜索树转换为累加树