307. 区域和检索 - 数组可修改
2021-02-15 07:18
标签:col int pre div array += bsp tor amp 307. 区域和检索 - 数组可修改 标签:col int pre div array += bsp tor amp 原文地址:https://www.cnblogs.com/yuhong1103/p/12716788.html 1 class NumArray
2 {
3 vectorint> num;
4 public:
5 NumArray(vectorint>& nums)
6 {
7 num = nums;
8 }
9
10 void update(int i, int val)
11 {
12 num[i] = val;
13 }
14
15 int sumRange(int i, int j)
16 {
17 int sum = 0;
18 for(int k = i;k num[k];
19 return sum;
20 }
21 };
文章标题:307. 区域和检索 - 数组可修改
文章链接:http://soscw.com/index.php/essay/55547.html