操作:

单点更新,区间求和

区间求和:如sum [3,10) 需要对19,5,12,26节点求和即可。

观察可知,左端点为右子节点(奇数)时直接相加,右端点为左子节点(偶数)时直接相加,两边向中间移动并求其父节点。

  1. class NumArray {
  2. public:
  3. NumArray(vector<int> nums) {
  4. n = nums.size();
  5. tree.resize(n * ); // 满二叉树
  6. buildTree(nums);
  7. }
  8.  
  9. void buildTree(vector<int>& nums) {
  10. for (int i = n; i < n * ; ++i) {
  11. tree[i] = nums[i - n];
  12. }
  13. for (int i = n - ; i > ; --i) {
  14. tree[i] = tree[i<<] + tree[i<<|];
  15. }
  16. }
  17.  
  18. void update(int i, int val) {
  19. tree[i += n] = val;
  20. while (i > ) {
  21. tree[i / ] = tree[i] + tree[i^];
  22. i /= ;
  23. }
  24. }
  25.  
  26. int sumRange(int i, int j) {
  27. int sum = ;
  28. for (i += n, j += n; i <= j; i /= , j /= ) {
  29. if ((i & ) == ) sum += tree[i++];
  30. if ((j & ) == ) sum += tree[j--];
  31. }
  32. return sum;
  33. }
  34.  
  35. private:
  36. int n;
  37. vector<int> tree;
  38. };

Refer:

Codeforces blog

树状数组解法

所有的奇数位置的数字和原数组对应位置的相同,偶数位置是原数组若干位置之和,若干是根据坐标的最低位 Low Bit 来决定的 ( x&-x )

[i, j] 区间和:sum[j]-sum[i-1]

  1. class NumArray {
  2. public:
  3. NumArray(vector<int>& nums) {
  4. data.resize(nums.size());
  5. bit.resize(nums.size()+);
  6. for(int i=;i<nums.size();i++){
  7. update(i,nums[i]);
  8. }
  9. }
  10.  
  11. void update(int i, int val) {
  12. int diff = val - data[i];
  13. for(int j=i+;j<bit.size();j+=(j&-j)){
  14. bit[j]+=diff;
  15. }
  16. data[i] = val;
  17. }
  18.  
  19. int sumRange(int i, int j) {
  20. return getSum(j+)-getSum(i);
  21. }
  22.  
  23. int getSum(int i){
  24. int res = ;
  25. for(int j=i;j>=;j-=(j&-j)){
  26. res+=bit[j];
  27. }
  28. return res;
  29. }
  30. private:
  31. vector<int> data;
  32. vector<int> bit; // 前面补0, 从1开始
  33. };

Range Sum Query - Mutable 精简无递归线段树的更多相关文章

  1. [Leetcode Week16]Range Sum Query - Mutable

    Range Sum Query - Mutable 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/range-sum-query-mutable/de ...

  2. 【刷题-LeetCode】307. Range Sum Query - Mutable

    Range Sum Query - Mutable Given an integer array nums, find the sum of the elements between indices ...

  3. [LeetCode] Range Sum Query - Mutable 区域和检索 - 可变

    Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive ...

  4. [LeetCode] 307. Range Sum Query - Mutable 区域和检索 - 可变

    Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive ...

  5. leetcode笔记:Range Sum Query - Mutable

    一. 题目描写叙述 Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), ...

  6. 307. Range Sum Query - Mutable

    题目: Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclu ...

  7. [LeetCode] 307. Range Sum Query - Mutable 解题思路

    Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive ...

  8. [LeetCode] Range Sum Query - Mutable 题解

    题目 题目 思路 一看就是单点更新和区间求和,故用线段树做. 一开始没搞清楚,题目给定的i是从0开始还是从1开始,还以为是从1开始,导致后面把下标都改掉了,还有用区间更新的代码去实现单点更新,虽然两者 ...

  9. LeetCode - 307. Range Sum Query - Mutable

    Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive ...

随机推荐

  1. Python检测URL状态

    需求:Python检测URL状态,并追加保存200的URL 代码一: #! /usr/bin/env python #coding=utf-8 import sys import requests d ...

  2. Invalid attempt to spread non-iterable instance

    问题在于对数据的操作,或数据类型,或数据名称

  3. UUID生成库libuuid和crossguid

    libuuid是一个开源的用于生成UUID(Universally Unique Identifier,通用唯一标识符)的库. 可从https://sourceforge.net/projects/l ...

  4. logger(三)log4j2简介及其实现原理

    一.log4j2简介 log4j2是log4j 1.x和logback的改进版,据说采用了一些新技术(无锁异步.等等),使得日志的吞吐量.性能比log4j 1.x提高10倍,并解决了一些死锁的bug, ...

  5. ssh实现无密码登陆

    参考教程:https://linux.cn/article-5444-1.html 1.假设你有一台主机A(ip:111.111.111.111),用户名为server123,想无密码登陆到主机B(1 ...

  6. PCI_PCIe_miniPCIe规格说明

    PCI PCI是一种本地总线(并行),规格书名称:PCI Local Bus Specification.并行总线,插槽规格统一. PCI stands for Peripheral Componen ...

  7. mysql binlog空间维护

    默认情况下,mysql主从同步的binlog日志,会一直保存. 对于如果已同步好的数据,这显然比较浪费资源. 且如果生产环境磁盘太小,随时还会爆掉,所以很有必要作好binlog的空间维护. 以下操作, ...

  8. V4L2视频采集原理

    一.简介 Video for Linuxtwo(Video4Linux2)简称V4L2,是V4L的改进版.V4L2是linux操作系统下用于采集图片.视频和音频数据的API接口,配合适当的视频采集设备 ...

  9. LuoguP5540:【模板】最小乘积生成树(几何逼近)

    题意:给定N点,M边,每条边有两个属性(a,b),现在让你选N-1条边出来,然后使得∑a*∑b最小.N<200,M<1e4: 思路:我们把∑a看成x,∑b看成y,那么一个方案对应一个二维坐 ...

  10. HTML元素脱离文档流的三种方法

    一.什么是文档流? 将窗体自上而下分成一行一行,并在每行中按从左至右依次排放元素,称为文档流,也称为普通流. 这个应该不难理解,HTML中全部元素都是盒模型,盒模型占用一定的空间,依次排放在HTML中 ...