rustic_core icon indicating copy to clipboard operation
rustic_core copied to clipboard

Try optimized search algorithms for index search

Open aawsome opened this issue 1 year ago • 0 comments

Currently we are using a binary search, there is interpolation search (O(log log n) for uniform distribution, which we should have but O(n) worst case) or quadratic binary search (worst case O(sqrt(n))).

aawsome avatar Jan 13 '25 21:01 aawsome