Search Results

1
vote

Algorithm to determine if array contains n…n+m?

Assuming you know only the length of the array and you are allowed to modify the array it can be done in O(1) space and O(n) time. The process has two straightforward steps. 1. "modulo sort …
2
votes

Possible to calculate closest locations via lat/long in better than O(n) time?

If the data set being searched is static, e.g., the coordinates of all gas stations in the US, then a proper index (BSP) would allow for efficient searching. Postgres has had good support since th …