Top "Iteration" questions

Iterations are the successive repetitions in loops such as for, foreach or while.

flex 3 iterate through object values

i have an object which represents a database table. I want to iterate through this object and print printing each …

flex3 iteration loops
for loop, iteration through alphabet? java

I can iterate through the alphabet, but I'm trying to keep the last iteration and add on the next letter. …

java loops for-loop iteration alphabet
C method for iterating through a struct's members like an array?

Let's say I have a vector class: typedef struct vec3_s { float x, y, z; } vec3; But, I would like …

c vector iteration memory-address subscript
income tax calculation python

How do I go about making a for-loop with a range 70000 and above? I'm doing a for-loop for an income …

python for-loop iteration bisection
remove html node from htmldocument :HTMLAgilityPack

In my code, I want to remove the img tag which doesn't have src value. I am using HTMLAgilitypack's HtmlDocument …

c# collections iteration html-agility-pack dom
Java LinkedHashSet backwards iteration

How can I iterate through items of a LinkedHashSet from the last item to the first one?

java set iteration linkedhashset
Can all iterative algorithms be expressed recursively?

If not, is there a good counter example that shows an iterative algorithm for which there exists no recursive counterpart? …

programming-languages recursion iteration language-theory
Iterate a format string over a list

In Lisp, you can have something like this: (setf my-stuff '(1 2 "Foo" 34 42 "Ni" 12 14 "Blue")) (format t "~{~d ~r ~s~%~}" my-stuff) …

python formatting iteration language-comparisons
How to calculate iteratively the running weighted average so that last values to weight most?

I want to implement an iterative algorithm, which calculates weighted average. The specific weight law does not matter, but it …

algorithm iteration weighted-average
Get the array of RadioButtons in a RadioGroup in Android

Is there any way of getting an array (or a collection) of the RadioButtons in an Android RadioGroup? I would …

android arrays radio-button iteration radio-group