I am trying to solve the following problem: given N time intervals, each specified as (start, end), non-overlapping, sorted based on start - find an interval that contains a given date. For instance given:
[1,4] [5,8] [9,10][11,20]
3 falls into the first interval, 15 into fourth etc.
So far I had the following base ideas:
- We can use binary seach to find the corresponding interval (Log N)
- Since it might be the case that only a few intervals are big, and the rest small, it might be worthwhile sorting the itervals based on their duration. Then, statistically, most of the time we would 'hit' the longest intervals (O(1)), only sometimes this would result in the worst case complexity of N.
I was thinking whether there is a scope to combine the two approaches. One other idea is to sort based on the duration and insert all the intervals into a tree, with comparison by start date, This, in the worst case when longest durations are in chronological order, this approach is equal in performance to 2.
The ideal solution I imagined would be to have a tree (or some similar data structure) that would contain the longest interval on the top, then the two branches would have the next two longest intervals etc. However, I see no way to branch in that tree i.e. since we make an explicit assumption that we insert based on the length, we cannot really discard left or right side of the tree.
Any comments would be greatly appreciated.