203 · 线段树的修改

 

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

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

在做此题前,最好先完成线段树的构造和 线段树查询这两道题目。
样例

样例 1:

输入:"[1,4,max=3][1,2,max=2][3,4,max=3][1,1,max=2][2,2,max=1][3,3,max=0][4,4,max=3]",2,4
输出:"[1,4,max=4][1,2,max=4][3,4,max=3][1,1,max=2][2,2,max=4][3,3,max=0][4,4,max=3]"
解释:
线段树:

                          [1, 4, max=3]
                        /                \
            [1, 2, max=2]                [3, 4, max=3]
           /              \             /             \
    [1, 1, max=2], [2, 2, max=1], [3, 3, max=0], [4, 4, max=3]

如何调用modify(root, 2, 4), 可以得到:

                          [1, 4, max=4]
                        /                \
            [1, 2, max=4]                [3, 4, max=3]
           /              \             /             \
    [1, 1, max=2], [2, 2, max=4], [3, 3, max=0], [4, 4, max=3]

样例 2:

输入:"[1,4,max=3][1,2,max=2][3,4,max=3][1,1,max=2][2,2,max=1][3,3,max=0][4,4,max=3]",4,0
输出:"[1,4,max=4][1,2,max=4][3,4,max=0][1,1,max=2][2,2,max=4][3,3,max=0][4,4,max=0]"
解释:
线段树:

                          [1, 4, max=3]
                        /                \
            [1, 2, max=2]                [3, 4, max=3]
           /              \             /             \
    [1, 1, max=2], [2, 2, max=1], [3, 3, max=0], [4, 4, max=3]
如果调用modify(root, 4, 0), 可以得到:
    
                          [1, 4, max=2]
                        /                \
            [1, 2, max=2]                [3, 4, max=0]
           /              \             /             \
    [1, 1, max=2], [2, 2, max=1], [3, 3, max=0], [4, 4, max=0]

挑战

时间复杂度 O(h) , h 是线段树的高度

 

/**

 * Definition of SegmentTreeNode:

 * class SegmentTreeNode {

 * public:

 *     int start, end, max;

 *     SegmentTreeNode *left, *right;

 *     SegmentTreeNode(int start, int end, int max) {

 *         this->start = start;

 *         this->end = end;

 *         this->max = max;

 *         this->left = this->right = NULL;

 *     }

 * }

 */

 

class Solution {

public:

    /**

     * @param root: The root of segment tree.

     * @param index: index.

     * @param value: value

     * @return: nothing

     */

    void modify(SegmentTreeNode * root, int index, int value) {

        // write your code here

        if(nullptr == root)

        {

            return;

        }

        std::stack<SegmentTreeNode * >sstk; //save parent node

        std::queue<SegmentTreeNode * >sque;

 

        sstk.push(root);

        sque.push(root);

 

        //find index node

        while(false == sque.empty())

        {

            SegmentTreeNode * node = sque.front();

            if(nullptr == node)

            {

                break;

            }

            sque.pop();

            if(node->start == node->end && node->start == index)

            {

                sstk.pop();

                node->max = value;

                break;

            }

            //left

            if(index <= (node->start + node->end)/2  )

            {

                sstk.push(node->left);

                sque.push(node->left);

            }

            //right

            if(index >= (node->start + node->end)/2 +1  )

            {

                sstk.push(node->right);

                sque.push(node->right);

            }

        }

 

         while(false == sstk.empty())

         {

            SegmentTreeNode * node = sstk.top();

            if(nullptr == node)

            {

                break;

            }

            sstk.pop();

            if(nullptr == node->left)

            {

                break;

            }

            if(nullptr == node->right)

            {

                break;

            }

            node->max = node->left->max > node->right->max  ?  node->left->max : node->right->max;

           

         }


 

        

       

    }

};

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值