Update README.

This commit is contained in:
Oleksii Trekhleb 2023-01-27 08:05:56 +01:00
parent 4b4d77071c
commit 1d6249d552

View File

@ -62,7 +62,7 @@ the data.
* `A` [Segment Tree](src/data-structures/tree/segment-tree) - with min/max/sum range queries examples
* `A` [Fenwick Tree](src/data-structures/tree/fenwick-tree) (Binary Indexed Tree)
* `A` [Graph](src/data-structures/graph) (both directed and undirected)
* `A` [Disjoint Set](src/data-structures/disjoint-set)
* `A` [Disjoint Set](src/data-structures/disjoint-set) - a unionfind data structure or mergefind set
* `A` [Bloom Filter](src/data-structures/bloom-filter)
* `A` [LRU Cache](src/data-structures/lru-cache/) - Least Recently Used (LRU) cache