Iterations are the successive repetitions in loops such as for, foreach or while. Questions with this tag are often concerned about how to best handle a collection of data.
379
votes
3answers
50k views
How foreach actually works
Let me prefix this by saying that I know what foreach is, does and how to use it. This question concerns how it works under the bonnet, and I don't want any answers along the lines of "this is how you ...
325
votes
12answers
182k views
How do I iterate over each Entry in a Map?
If I have an object implementing the Map interface in Java and I wish to iterate over every pair contained within it, what is the most efficient way of going through the map?
Will the ordering of ...
158
votes
2answers
110k views
How do I iterate over an NSArray?
I'm looking for the standard idiom to iterate over an NSArray. My code needs to be suitable for OS X 10.4+.
117
votes
10answers
44k views
Remove items from a list while iterating in Python
I'm iterating over a list of tuples in Python, and am attempting to remove them if they meet certain criteria.
for tup in somelist:
if determine(tup):
code_to_remove_tup
What should I ...
83
votes
5answers
47k views
Iterating over a String (Python)
In C++, I could do:
for(int i = 0; i < str.length(); ++i)
std::cout << str[i] << std::endl;
How do I iterate over a string in Python?
82
votes
6answers
25k views
How do I use Python's itertools.groupby()?
I haven't been able to find an understandable explanation of how to actually use Python's itertools.groupby() function. What I'm trying to do is this:
Take a list - in this case, the children of an ...
78
votes
13answers
20k views
Way to go from recursion to iteration
I've used recursion quite a lot on my many years of programming to solve simple problems, but I'm fully aware that sometimes you need iteration due to memory/speed problems.
So, sometime in the very ...
78
votes
8answers
15k views
Is recursion ever faster than looping?
I know that recursion is sometimes a lot cleaner than looping, and I'm not asking anything about when I should use recursion over iteration, I know there are lots of questions about that already.
...
69
votes
3answers
45k views
Iterating a JavaScript object's properties using jQuery
Is there a jQuery way to perform iteration over an object's members, such as in:
for (var member in obj) {
...
}
I just don't like this for sticking out from amongst my lovely ...
60
votes
20answers
14k views
Can every recursion be converted into iteration?
A reddit thread brought up an apparently interesting question:
Tail recursive functions can trivially be converted into iterative functions. Other ones, can be transformed by using an explicit stack. ...
53
votes
2answers
17k views
Is there a way to iterate over a dictionary?
I know dictionaries as something where you need a key in order to get a value. But how can I iterate over all keys and values in a dictionary, so that I know what keys there are, and what values there ...
51
votes
7answers
50k views
How can I reverse a list in python?
How can i do this in python?
array=[0,10,20,40]
for (i = array.length() - 1 ;i >= 0; i--)
I need to have the elements of an array but from the end to the beginning.
50
votes
4answers
23k views
How to skip to next iteration in jQuery.each() util?
I'm trying to iterate through an array of elements. jQuery's documentation says:
jquery.Each() documentation
Returning non-false is the same as a continue statement in a for loop, it will skip ...
48
votes
8answers
19k views
Iterating through a range of dates in Python
I have the following code to do this, but how can I do it better? Right now I think it's better than nested loops, but it starts to get Perl-one-linerish when you have a generator in a list ...
47
votes
9answers
36k views
What is the easiest/best/most correct way to iterate through the characters of a string in Java?
StringTokenizer? Convert the String to a char[] and iterate over that? Something else?
45
votes
11answers
39k views
C# Iterating through an enum? (Indexing a System.Array)
I have the following code:
// Obtain the string names of all the elements within myEnum
String[] names = Enum.GetNames( typeof( myEnum ) );
// Obtain the values of all the elements within myEnum
...
43
votes
3answers
2k views
Why doesn't $.each() iterate through every item?
I have the following markup containing 10 pre elements with the class indent:
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
...
38
votes
6answers
37k views
How do I access properties of a javascript object if I don't know the names?
Say you have a javascript object like this:
var data = { Name: 'Property Name', Value: '0' };
You can access the properties by the property name:
var name = data.Name;
var value = data["Value"];
...
32
votes
1answer
21k views
Efficient looping through AS3 dictionary
for (var k in dictionary)
{
var key:KeyType = KeyType(k);
var value:ValType = ValType(dictionary[k]); // <-- lookup
// do stuff
}
This is what I use to loop through the entries in a ...
31
votes
5answers
18k views
Remove Elements from a HashSet while Iterating
So, if I try to remove elements from a Java HashSet while iterating, I get a ConcurrentModificationException. What is the best way to remove a subset of the elements from a HashSet as in the ...
30
votes
8answers
22k views
How to modify or delete items from an enumerable collection while iterating through it in C#
I have to delete some rows from a data table. I've heard that it is not ok to change a collection while iterating through it. So instead of a for loop in which I check if a row meets the demands for ...
30
votes
2answers
4k views
Why is it bad to use an iteration variable in a lambda expression
I was just writing some quick code and noticed this complier error
Using the iteration variable in a lambda expression may have unexpected results.
Instead, create a local variable within the ...
29
votes
17answers
3k views
Is it “iterate through” or “iterate over” something?
Just thought about it. Is there a semantic distinction, or are we free to choose?
EDIT I accepted @roygbivs answer, because most of the answers suggested that it is a matter of taste which one to ...
27
votes
1answer
33k views
How do I iterate through child elements of a div using jQuery?
I have a div and it has several input elements in it... I'd like to iterate through each of those elements. Ideas?
26
votes
6answers
13k views
for vs each in Ruby
I just had a quick question regarding loops in Ruby. Is there a difference between these two ways of iterating through a collection?
# way 1
@collection.each do |item|
# do whatever
end
# way 2
...
25
votes
6answers
98k views
How to Iterate Through an Array List
So right now I have a program containing a piece of code that looks like this...
while (arrayList.iterator().hasNext())
{
if( arrayList.iterator().next().equals(value)) //value is equal to a ...
25
votes
2answers
4k views
Is generator.next() visible in python 3.0?
I have a generator that generates a series, for example:
def triangleNums():
'''generate series of triangle numbers'''
tn = 0
counter = 1
while(True):
tn = tn + counter
...
25
votes
15answers
6k views
Recursion or iteration?
I love recursion. I think it simplifies things a lot. Another may disagree; I think it also makes the code a lot easier to read. However, I've noticed that recursion is not used as much in languages ...
23
votes
12answers
12k views
Iterate over pairs in a list (circular fashion) in Python
The problem is easy, I want to iterate over each element of the list and the next one in pairs (wrapping the last one with the first).
I've thought about two unpythonic ways of doing it:
def ...
23
votes
6answers
6k views
Should I use jQuery.each()?
I'm doing very frequent iterations over arrays of objects and have been using jQuery.each(). However, I'm having speed and memory issues and one of the most called methods according to my profiler is ...
22
votes
6answers
1k views
Is there a Python equivalent of range(n) for multidimensional ranges?
On Python, range(3) will return [0,1,2]. Is there an equivalent for multidimensional ranges?
range((3,2)) # [(0,0),(0,1),(1,0),(1,1),(2,0),(2,1)]
So, for example, looping though the tiles of a ...
22
votes
5answers
13k views
Converting a List of Tuples into a Dict in Python
I have a list of tuples like this:
[
('a', 1),
('a', 2),
('a', 3),
('b', 1),
('b', 2),
('c', 1),
]
I want to iterate through this keying by the first item, so for example I could print something ...
21
votes
7answers
31k views
What is the difference between Sprint and Iteration in Scrum and length of each Sprint?
Is there a difference between Sprint and an Iteration or one can have Iterations within a Sprint or Sprint is just the terminology used instead of Iteration in Scrum? It will be helpful if someone ...
21
votes
4answers
519 views
How to concisely express function iteration?
Is there a concise, idiomatic way how to express function iteration? That is, given a number n and a function f :: a -> a, I'd like to express \x -> f(...(f(x))...) where f is applied n-times.
...
21
votes
4answers
4k views
Generic iterator
I am trying to find a generic way of accessing a set of containers. I have a standard vector and list in addition to another custom list.
The custom list defines an iterator;
class Iterator: public ...
20
votes
7answers
13k views
Design patterns for converting recursive algorithms to iterative ones
Are there any general heuristics, tips, tricks, or common design paradigms that can be employed to convert a recursive algorithm to an iterative one? I know it can be done, I'm wondering if there are ...
20
votes
8answers
18k views
Ruby each_with_index offset
Can I define the offset of the index in the each_with_index loop iterator?
My straight forward attempt failed:
some_array.each_with_index{|item, index = 1| some_func(item, index) }
Edit:
...
19
votes
3answers
7k views
How do I modify an array while I am iterating over it in Ruby?
I'm just learning Ruby so apologies if this is too newbie for around here, but I can't work this out from the pickaxe book (probably just not reading carefully enough).
Anyway, if I have an array like ...
19
votes
2answers
9k views
iteration in latex
I would like to use some iteration control flow to simplify the following latex code
\begin{sidewaystable}
\caption{A glance of images}
\centering
\begin{tabular}{| c ||c| c| c ...
18
votes
9answers
10k views
What's the safest way to iterate through the keys of a Perl hash?
If I have a Perl hash with a bunch of (key, value) pairs, what is the preferred method of iterating through all the keys? I have heard that using each may in some way have unintended side effects. ...
18
votes
7answers
16k views
How do I loop through a Python list by twos? [duplicate]
Possible Duplicate:
What is the most “pythonic” way to iterate over a list in chunks?
I want to loop through a Python list and process 2 list items at a time. Something like ...
18
votes
8answers
7k views
Iterators in C++ (stl) vs Java, is there a conceptual difference?
I'm returning to c++ after being away for a bit and trying to dust off the old melon.
In Java Iterator is an interface to a container having methods: hasNext(), next() and remove(). The presence of ...
18
votes
1answer
746 views
Haskell iteratee: simple worked example of stripping trailing whitespace
I'm trying to understand how to use the iteratee library with Haskell. All of the articles I've seen so far seem to focus on building an intuition for how iteratees could be built, which is helpful, ...
18
votes
5answers
573 views
Python multiprocessing design
I have written an algorithm that takes geospatial data and performs a number of steps. The input data are a shapefile of polygons and covariate rasters for a large raster study area (~150 million ...
17
votes
4answers
35k views
Sorted Dictionary in C#
Is there any way I can iterate backwards (in reverse) through a SortedDictionary in c#?
Or is there a way to define the SortedDictionary in descending order to begin with?
17
votes
9answers
14k views
is the Java HashMap keySet() iteration order consistent?
I understand that the Set returned from a Map's keySet() method does not guarantee any particular order.
My question is, does it guarantee the same order over multiple iterations. For example
...
17
votes
4answers
430 views
How to make generic computations over heterogeneous argument packs of a variadic template function?
PREMISE:
After playing around with variadic templates a little bit, I realized that achieving anything which goes slightly beyond the trivial meta-programming tasks soon becomes pretty cumbersome. In ...
16
votes
14answers
15k views
In C# .NET 2.0, what's an easy way to do a foreach in reverse?
Lets say I have a Dictionary object:
Dictionary myDictionary<int, SomeObject> = new Dictionary<string, SomeObject>();
Now I want to iterate through the dictionary in reverse order. I ...
16
votes
6answers
9k views
Is there a better way to iterate over two lists, getting one element from each list for each iteration?
I have a list of Latitudes and one of Longitudes and need to iterate over the latitude and longitude pairs.
Do you think it's be better to:
A) (assume that equal lengths is already checked)
for i ...
16
votes
2answers
11k views
Iterating over class properties
I'm trying to iterate over the Color class' Color properties.
Unfortunately its not in a collection so its just a class with a bunch of static properties.
Does anyone know if its possible to iterate ...

