Fenwick Tree
A Fenwick tree or binary indexed tree is a data structure that can efficiently update elements and calculate prefix sums in a table of numbers.
Implementation
c++
1 | vector<int> fenwickTree; |