OSDN Git Service

Update docs/ds/bit.md
authorWrzz <961337146@qq.com>
Sat, 14 Sep 2019 03:26:08 +0000 (11:26 +0800)
committerGitHub <noreply@github.com>
Sat, 14 Sep 2019 03:26:08 +0000 (11:26 +0800)
Co-Authored-By: ouuan <y___o___u@126.com>
docs/ds/bit.md

index 44297c7..b33d282 100644 (file)
@@ -90,7 +90,7 @@ int getsum(int x) {  // a[1]……a[x]的和
 }
 ```
 
-## 区间修改加区间求和
+## 区间加区间求和
 
 若维护序列 $a$ 的差分数组 $b$ ,此时我们对 $a$ 的一个前缀 $r$ 求和,即 $\sum_{i=1}^{r} a_i$ ,由差分数组定义得 $a_i=\sum_{j=1}^i b_j$