vote up 0 vote down star

Count up and count down seems no difference, we can implement either one as we like. But actually what is the advantage for using count up and count down. what is the difference between them (besides that one is increment, another one is decrement)?

flag
4  
i think my head just exploded – Shawn Oct 29 at 0:56
4  
Is this meant philosophically? – The Feast Oct 29 at 0:57
1  
What are you talking about? Can you provide some context? – GraemeF Oct 29 at 0:57
1  
If I remember correctly, people used to try to count down to take advantage of the assembly operation "branch on zero", to break out of counted loops. It saves at least one operation. – Nixuz Oct 29 at 1:02
And what a long way computers have come since those days! – David Caunt Oct 29 at 1:06
show 1 more comment

closed as not a real question by Sinan Ünür, Shawn, gahooa, OMG Ponies, mquander Oct 29 at 1:06

5 Answers

vote up 1 vote down

If you are talking about loops indexes and whether to count the index variable up to a limit or down to a limit, then I've always taken these two points into consideration:

  1. Counting up always makes for more readable code.
  2. Counting down is ever so slightly more efficient if your limit is zero and you use a integer decrement of 1. (at least is used to be)

Compilers are getting smarter year by year, so it might no longer be the case in general.

link|flag
Recent Java VMs can still optimize the count-to-0 case better. However counting up always makes more readable code is kind of silly without better context -- e.g. perhaps the idea was to go "backwards". – pst Oct 29 at 6:11
Fair point. If the context is naturally downwards you are probably right. I find such context uncommon, but that could just be me. – Nicholas Oct 29 at 10:18
vote up 1 vote down

Taking a SWAG on the question here:

Counting in a traditional for-loop requires the condition to be checked on every iteration.

for (i = 0 ; i < lengthof(loooong_list) ; i++)
{ 
print(loooong_list[i])
}

requires you to calculate the length of the list each time. And since lengthof is assumed to be an O(n) operation executed n times, the loop turns into an O(n^2) operation.

However,

for (i = lengthof(loooong_list) - 1 ; i >= 0 ; i++)
{ 
print(loooong_list[i])
}

is an O(2n) operation because you calculate the length of the list once, and iterate over it, printing its values, once.

The downside to the second approach is that it's not always acceptable to iterate in reverse; however, it's easy enough to store the length in another variable and subtract, in order to iterate forwards again.

link|flag
A good practice is to store the list size separately BEFORE the loop begins: <pre> l = lengthof(loooong_list); for (i = 0 ; i < l ; i++) { print(loooong_list[i]); } </pre> – FrustratedWithFormsDesigner Oct 29 at 1:06
vote up 1 vote down

If you know what the end is, then maybe countdown makes more sense - the current count tells you how many there are left to do. On the other hand, count up also works perfectly well, with the current count telling you how much you've done.

If you don't know where the end is, then count-up makes a lot more sense.

In terms of general efficiency, there isn't a lot to choose.

If you use unsigned integers, then the countdown has a gotcha if you decrement zero.

link|flag
vote up 9 vote down

If you're counting down in C-like language, you can use this cute bit of syntax:

int n = 10;
while (n --> 0) {
    ...
}
link|flag
vote up 2 vote down

Counting up is a lot harder than counting down. Which is easier - running up a hill or running down a hill?

link|flag
3  
Have you considered the psychological angle of running up the hill backwards? Even though you're going up hill, your brain thinks your going down! – Dave Barker Oct 29 at 1:01

Not the answer you're looking for? Browse other questions tagged or ask your own question.