Re: how to optimize a for loop
- From: andreyvul <andrey.vul@xxxxxxxxx>
- Date: Tue, 30 Oct 2007 19:15:52 -0700
On Oct 30, 9:53 pm, Eric Sosman <esos...@xxxxxxxxxxxxxxxxxxxx> wrote:
andreyvul wrote:sort still fails
I have this loop (all variables are pointers):
for (foo = bar; foo > baz; foo--)
*(foo+1) = *foo;
How do I optimize the pointer swap so that it uses -- and ++ or unary
+- instead of +1 (if possible - I don't want to have more #defines
than code)?
IOCCC winners can really help me with this :P
Assuming the pointers are of the same type:
memmove (baz + 2, baz + 1, (bar - (baz + 1)) * sizeof *baz);
--
Eric Sosman
esos...@xxxxxxxxxxxxxxxxxxxx
actual output: 1 1 3 1 1 1 1 3 1 1
intended output: 1 2 3 4 5 6 7 8 9 10
somehow memmove fails while iterated swap works. wierd.
.
- Follow-Ups:
- Re: how to optimize a for loop
- From: Eric Sosman
- Re: how to optimize a for loop
- From: Jack Klein
- Re: how to optimize a for loop
- References:
- how to optimize a for loop
- From: andreyvul
- Re: how to optimize a for loop
- From: Eric Sosman
- how to optimize a for loop
- Prev by Date: Re: printf("%d",float)
- Next by Date: Re: printf("%d",float)
- Previous by thread: Re: how to optimize a for loop
- Next by thread: Re: how to optimize a for loop
- Index(es):
Relevant Pages
|