Re: STL container question
On Oct 1, 7:40 pm, Pete Becker <p...@versatilecoding.com> wrote:
On 2008-10-01 10:23:13 -0400, Ioannis Vranos
<ivra...@no.spam.nospamfreemail.gr> said:
Victor Bazarov wrote:
Ioannis Vranos wrote:
Victor Bazarov wrote:
Store first, then sort, then search (using
'std::binary_search'), you could just use 'std::vector'.
For that case, I think std::list is a better option, since
the sorting will be faster,
Do you have any proof of that?
Lists are implemented using pointers to point to the
previous and to the next elements, so list::sort(), is more
efficient by changing pointer values, while sorting a vector
involves copying objects.
In other words, no. <g> One could also point out that
quicksort can be used to sort a vector but can't be used on a
list, so obviously sorting a vector is faster. The problem
with both arguments is exactly what Victor implied: they're
handwaving. Proof requires much more detailed analysis, or if
you're making a decision for a particular platform,
measurement.
To other considerations: you can't use binary_search on
std::list---with any sort of size, that's going to make a
significant difference in favor of vector. And of course, an
std::list has horrible locality, which will translate into a lot
of cache misses (or even virtual page faults). So even if
sorting it were faster (which I somehow doubt)...
--
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