From 0fdff0a05d20c4860e292859825274e7a05f7961 Mon Sep 17 00:00:00 2001 From: JJCUBER <34446698+JJCUBER@users.noreply.github.com> Date: Thu, 18 Apr 2024 21:47:34 -0400 Subject: [PATCH] Improve title consistency in fenwick.md --- src/data_structures/fenwick.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data_structures/fenwick.md b/src/data_structures/fenwick.md index b6548d291..2ef0db409 100644 --- a/src/data_structures/fenwick.md +++ b/src/data_structures/fenwick.md @@ -380,7 +380,7 @@ int point_query(int idx) { Note: of course it is also possible to increase a single point $A[i]$ with `range_add(i, i, val)`. -### 3. Range Updates and Range Queries +### 3. Range Update and Range Query To support both range updates and range queries we will use two BITs namely $B_1[]$ and $B_2[]$, initialized with zeros.