hey I'm looking for are clean solution to this problem:

i start the loop with i = 0 in the second loop step the i = 1, then i = -1 and then i = 2 ect.
how to programm this with a for loop in a clean way?
|
hey I'm looking for are clean solution to this problem:
i start the loop with how to programm this with a |
|||||
|
|
If you don't mind having the inner loop appear 3 times:
2 times with an
single time but with an ugly expression:
|
|||||||||||
|
Should do what you want |
|||||||||||
|
|
Each loop, you appear to be adding
etc. From here, it depends on what language you would wish to write in. Iterate from edit this is a bad answer. but fun =D (I added that last bit because as soon as I made that edit, someone downvoted me =( ) |
||||
|
|
|
Here is implementation in javascript
Hope it helps. |
|||||
|
|
|
Just one addition one subtraction and a negation:
generates an inner loop of:
|
||||
|
|
|
I used the sine function:
|
||||
|
|
|
|||
|
|
|
There is a pattern to this loop. Looking at it on the number line - it goes like:
Here's one solution - keep incrementing the step size in each iteration of the loop, and flip direction (forward/backward) every time. Keep adding to the current value.
Another solution using generators in JavaScript 1.7 which is identical to @FallingBullet's solution but more aesthetically pleasing to my eye :)
|
||||
|
|
|
For what it's worth, here is my own interpretation of the problem.
|
|||
|
|
|
A modification of falling bullet's solution, that will handle the 0 index case without a special condition.
|
|||
|
|
|
In C. The value of N is the total number of values in the sequence you wish to yield.
|
|||
|
|
|
I'd probably go with:
|
|||
|
|