rustic_core
rustic_core copied to clipboard
Try optimized search algorithms for index search
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))).