Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 202 Bytes

ReadMe_en.md

File metadata and controls

3 lines (2 loc) · 202 Bytes

SparseTable Implementation on Rust

SparseTable is an fascinating data structure. It can build index for an Array in O(n*log2(n)) and then query the range max query in O(1) time, Which is really fast.