leetcode(538). Convert BST to Greater Tree

question

Given a Binary Search Tree (BST), convert it to a Greater Tree such
that every key of the original BST is changed to the original key plus
sum of all keys greater than the original key in BST.

solution

把原有二叉排序树转化为一棵新的二叉树,使得这棵树上的节点的值是原对应节点的值加上所有大于它的值的和。

因为原来的树是一颗二叉排序树,所以可以知道大于某个节点的所有节点在且只在它的右子树上,因此我们可以用右子树-根-左子树的顺序遍历二叉树,同时使用全局变量记录经过的节点的和。

全局变量用法,首先要在全局作用域声明一个变量,然后如果在函数、匿名函数或类中修改变量则需要使用global声明使用的是一个全局变量,如果只是使用而不修改的话则无需使用global声明。更多参考python变量作用域

x = 0
def tra(root):
    global x
    if not root:
        return

    tra(root.right)
    tmp = root.val
    root.val += x
    # print(root.val, x)
    x += tmp

    tra(root.left)


class Solution(object):
    def convertBST(self, root):
        """
        :type root: TreeNode
        :rtype: TreeNode
        """
        global x
        x = 0
        tra(root)

        return root

leetcode上不支持py3,所以无法使用nonlocal关键字,

class Solution(object):
    def convertBST(self, root):
        """
        :type root: TreeNode
        :rtype: TreeNode
        """
        x = 0
        def tra(root):
            nonlocal x
            if not root:
                return

            tra(root.right)
            tmp = root.val
            root.val += x
            # print(root.val, x)
            x += tmp

            tra(root.left)
        tra(root)

        return root

在python2上可以使用实例变量模拟闭包外变量。

class Solution(object):
    def convertBST(self, root):
        self.tempsum = 0
        def decorder(root): 
            if not root: 
                return
            decorder(root.right)
            root.val += self.tempsum
            self.tempsum = root.val
            decorder(root.left)
        decorder(root)
        return root
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值