I'm having a situation in C++ (on Windows) where I need to keep a set of pair of int: pair where start values are unique (we need not be concerned with this). The operations required are:
- insert pair
- retrieve pair X: this should return the pair Y where Y's start < X's start < X's end < Y's end. If Y doesn't exist, return false.
The basic solution is to simply keep a set of pairs. For retrieval, we'll iterate sequentially through the set to check. This is O(n).
I'm looking for a better solution. I currently see 2 candidate data structures:
- Sorted vector
- STL's set (internally implemented as binary search tree?)
Sorted Vector: Pros: can customize the binary search to support the retrieval operation. This is O(logn) Cons: how to efficiently insert a new pair to maintain the sorted order. How to avoid a re-sorting cost of O(nlogn)?
Set: Pros: Easy insertion using the standard insert method. This is O(1)? Cons: How to avoid the sequential search? How to do better than O(n)?
Thanks for your advice.
I'm also open to any other structures that can efficiently (1st criterion is speed; 2nd is memory) support the 2 operations mentioned above.
x = 3and you try to retrieve from the structure that has either1,2either1,4. Which one should be used? – Jack Apr 18 '12 at 3:22