Re: STL implementation of list::sort
On 28 Aug., 22:45, Marc wrote:
On 27 ao?t, 23:22, SG wrote:
If by "from an implementation point of view" you mean list::sort
allocates a fixed amount of space for doing its work, then yes. But
this sort I'm looking at right now (libstdc++ from GCC 4.4.3) also
stops working if the list has more than 2^64 (or so) elements. Of
course, this is a limit you won't reach in practice, but that's not
how the big-O is defined. Big-O is about the asymtotic behaviour and I
don't see how a linked list can be sorted without additional O(log n)
space. Sure, log n is rather insignificant, and in practice you can
assume log n <= 64. But it's still log n.
Actually, before talking big-Os, you need to define what you are
talking about. It is a fairly common model of computation where
registers are assumed to have at least log(n) bits (pointers can
address the entire memory), and if you count the size in terms of
number of registers...
What you describe is also perfectly true, in a different model.
If if I treat the size of a pointer or register to be constant for all
list sizes n (which I actually do!), the list sort requires O(log n)
additional space. That was my point. It's not about register size. You
need to remember O(log n) pointers during the sort. You can do this
via recursion or via an iterative algorithm. Doesn't matter. You need
to remember O(log n) pointers at some point in the algorithm.
Cheers!
SG
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]