Given an empty array, I need to make two type of queries
-
Inserting an element in the array
-
Finding the index of some element k (obviously the array has to be kept sorted)
This can be done be using set container
set<int> st;
set.insert(t);
This will insert my element in O(log(n)).
And for 2nd query
set<int>::iterator it;
it = st.find(k);
idx = distance(st.begin(), it);
This takes O(n) time. (O(n) [for distance()[ + O(log(n) [for set::find()] ).
Is there any way to do both queries in O(log(n)) using the predefined containers of C++?
No. It is not possible (with the predefined containers). The sequence containers of the C++ Standard Library have either:
or
Note that
dequeis an exception, but only when the insertion/removal takes place at the ends of the array. The general case is still O(N).Furthermore, the classification of iterators does not include a category for this case. You have the bidirectional iterators (those of
list,set,multiset,mapandmultimap), which take O(N) time to jump to a random position, and the next category is for random access iterators (those ofvector,dequeandstring). There is no intermediate category.Adding a new category would not be trivial at all. The library also implements a lot of algorithms (like
for_each) that work with containers. There is an implementation for every iterator category.Order statistic trees have been proposed at Boost several times. As far as I know:
The main difficulty for them being accepted was the generalized opinion that they were not a benefit, but a hazard. Today’s programmers are used to solve all the problems they know with the typical containers. Experienced programmers fear that newbies might blindly use the proposed container for everything, instead of choosing carefully.