Skip to content

Commit 2e16f5f

Browse files
committed
更新目录
1 parent 0cc2081 commit 2e16f5f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
* [Bit Manipulation ✅](#bit-manipulation)
4444
* [Union Find ✅](#union-find)
4545
* [Sliding Window ✅](#sliding-window)
46-
* [Segment Tree](#segment-tree)
46+
* [Segment Tree ✅](#segment-tree)
47+
* [Binary Indexed Tree ✅](#binary-indexed-tree)
4748

4849

4950
| 数据结构 | 变种 | 相关题目 |
@@ -2212,7 +2213,7 @@ X & ~X = 0
22122213
22132214
## Segment Tree
22142215
2215-
![]()
2216+
![](./Topics/Segment_Tree.png)
22162217
22172218
- 线段数的经典写法。(数组和指针实现)将 merge 逻辑抽象出来了,可以实现任意操作(常见的操作有:加法,取 max,min 等等)
22182219
- 计数线段树的经典写法
@@ -2243,4 +2244,8 @@ X & ~X = 0
22432244
|-----------------------------------------------------------------|-------------|-------------| --------------------------| --------------------------|-------------|
22442245
22452246
2247+
## Binary Indexed Tree
2248+
2249+
![](./Topics/Binary_Indexed_Tree.png)
2250+
22462251
----------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)