|
4 |
edited tags
|
||
|
3 |
|
||
|
I believe (from some research reading) that counting down in for-loops is actually more efficient and faster in runtime. My full software code is C++ I currently have this:
my 'i' is unsigned resgister int, also 'domain' is unsigned int in the for-loop i is used for going through an array, e.g.
converting this to count down messes up the expected/correct output of my routine. I can imagine the answer being quite trivial, but I can't get my head round it. UPDATE: 'do stuff' does not depend on previous or later iteration. The calculations within the for-loop are independant for that iteration of i. (I hope that makes sense). UPDATE: To achieve a runtime speedup with my for-loop, do I count down and if so remove the unsigned part when delcaring my int, or what other method? Please help. |
||||
|
2 |
edited tags
|
||
|
1 |
|
||
