Re: Which is more Efficient in STL ------ SET / MAP ?
On Feb 13, 7:10 pm, Jeff Schwab <j...@schwabcenter.com> wrote:
Pallav singh wrote:
Which is more Efficient in STL ------ SET / MAP ?
as in SET we can use insert( ) function which allow to insert at a
given Iterator position
The position is just a hint.
( if Element is passed by comparator
function )........
How would the comparator ever reject an element? By throwing
an exception?
I have a Doubt that does not it harm Search time
Complexity in SET???
The complexity of insertions should be amortized log(N) with
the size of the set. If you consistently give the worst
possible hint (e.g. using set_.begin() to insert elements that
belong at the end of the set), I suppose the complexity might
be affected in an implementation-specific manner. (Or not.)
It shouldn't be. Concerning the complexity of this function,
the standard says "logrithmic in general, but amortized constant
if t is inserted right before p" (t is the element being
inserted, p is the hint). Roughly speaking, the function checks
whether t should be inserted immediately before p, and if not,
simply ignores the hint, and calls the insert without the hint.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34