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)?
|
|
|||||||||||||||||||
|
closed as not a real question by Sinan Ünür, Shawn, gahooa, OMG Ponies, mquander Oct 29 at 1:06 |
|
|
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:
Compilers are getting smarter year by year, so it might no longer be the case in general. |
||||
|
|
|
Taking a SWAG on the question here: Counting in a traditional for-loop requires the condition to be checked on every iteration.
requires you to calculate the length of the list each time. And since However,
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. |
||
|
|
|
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. |
||
|
|
|
|
If you're counting down in C-like language, you can use this cute bit of syntax:
|
||
|
|
|
|
Counting up is a lot harder than counting down. Which is easier - running up a hill or running down a hill? |
||||
|
