File tree 2 files changed +2
-2
lines changed
src/data-structures/tree/segment-tree
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ and geographic information systems.
43
43
Current implementation of Segment Tree implies that you may
44
44
pass any binary (with two input params) function to it and
45
45
thus you're able to do range query for variety of functions.
46
- In tests you may find examples of doing ` min ` , ` max ` and ` sam ` range
46
+ In tests you may find examples of doing ` min ` , ` max ` and ` sum ` range
47
47
queries on SegmentTree.
48
48
49
49
## References
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ A implementação atual da Árvore de Segmentos implica que você pode passar
39
39
qualquer função binária (com dois parâmetros de entradas) e então, você
40
40
será capaz de realizar consultas de intervalos para uma variedade de funções.
41
41
Nos testes você poderá encontrar exemplos realizando ` min ` , ` max ` e consultas de
42
- intervalo ` sam ` na árvore segmentada (SegmentTree).
42
+ intervalo ` sum ` na árvore segmentada (SegmentTree).
43
43
44
44
## Referências
45
45
You can’t perform that action at this time.
0 commit comments