线段树的修改

题目描述:对于一棵 最大线段树, 每个节点包含一个额外的 max 属性,用于存储该节点所代表区间的最大值。

设计一个 modify 的方法,接受三个参数 root、 index 和 value。该方法将 root 为跟的线段树中 [start, end] = [index, index] 的节点修改为了新的 value ,并确保在修改后,线段树的每个节点的 max 属性仍然具有正确的值。


样例:对于线段树:



如果调用 modify(root, 2, 4), 返回:


或 调用 modify(root, 4, 0), 返回:



在做这道题之前,请先完成“线段树的构造”(详见:点击打开链接),“线段树的查询”(详见:点击打开链接)。因为这道题跟前面的两题用的思路是一模一样的。

还是采取搜索的方法,除非搜索到相应的叶子节点,修改值,否则,就递归地搜索当前节点的左右孩子。

代码如下:

"""
Definition of SegmentTreeNode:
class SegmentTreeNode:
    def __init__(self, start, end, max):
        self.start, self.end, self.max = start, end, max
        self.left, self.right = None, None
"""

class Solution: 
    """
    @param root, index, value: The root of segment tree and 
    @ change the node's value with [index, index] to the new given value
    @return: nothing
    """
    def modify(self, root, index, value):
        # 查询与节点没有交集,剪枝
        if root is None or root.start > index or root.end < index:
            return
        # 搜索到叶子节点,修改
        elif root.end == root.start == index:
            root.max = value
        # 递归的过程
        else:
            self.modify(root.left, index, value)
            self.modify(root.right, index, value)
            root.max = max(root.left.max, root.right.max)
        # write your code here


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值