Tagged Questions

Iteration means the act of repeating a process usually with the aim of approaching a desired goal or target or result.

learn more… | top users | synonyms

92
votes
9answers
55k views

How do I iterate over each Entry in a Collection 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 ...
48
votes
8answers
4k 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. ...
47
votes
3answers
48k 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+.
37
votes
8answers
11k 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 ...
36
votes
5answers
17k 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?
35
votes
5answers
11k 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 ...
33
votes
19answers
7k 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. ...
33
votes
10answers
6k 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 ...
26
votes
2answers
19k 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 ...
22
votes
15answers
4k 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 ...
21
votes
9answers
15k 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 ...
21
votes
8answers
12k 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 ...
19
votes
17answers
1k 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 ...
19
votes
9answers
11k 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?
18
votes
8answers
5k 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 ...
17
votes
1answer
558 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, ...
17
votes
1answer
8k 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 ...
17
votes
4answers
2k 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 ...
14
votes
5answers
6k 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 ...
14
votes
13answers
10k 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 ...
13
votes
7answers
747 views

Python: Memory usage and optimization when modifying lists

The problem My concern is the following: I am storing a relativity large dataset in a classical python list and in order to process the data I must iterate over the list several times, perform some ...
13
votes
6answers
1k views

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? If it is the case that all iterative algorithms can be expressed ...
13
votes
2answers
2k views

Why is it bad to use a 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 loop ...
12
votes
7answers
487 views

C++ map iteration with deletion

I couldn't find an instance of how to do this, so I was hoping someone could help me out. I have a map defined in a class as follows: std::map<std::string, TranslationFinished> ...
12
votes
2answers
996 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 ...
12
votes
3answers
8k 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"]; ...
12
votes
5answers
7k 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 ...
11
votes
5answers
476 views

Iterating Through N Level Children

This seems like something neat that might be "built into" jQuery but I think it's still worth asking. I have a problem where that can easily be solved by iterating through all the children of a ...
11
votes
6answers
472 views

Recursion Vs Loops

I am trying to do work with examples on Trees as given here: http://cslibrary.stanford.edu/110/BinaryTrees.html These examples all solve problems via recursion, I wonder if we can provide a iterative ...
11
votes
15answers
2k views

Why should recursion be preferred over iteration?

Iteration is more performant than recursion, right? Then why do some people opine that recursion is better (more elegant, in their words) than iteration? I really don't see why some languages like ...
11
votes
7answers
2k views

Iteration over list slices

Good day function-wizards, I want an algorithm to iterate over list slices. Slices size is set outside the function and can differ. In my mind it is something like: for list_of_x_items in ...
11
votes
4answers
8k 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 ...
11
votes
9answers
5k 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. ...
10
votes
2answers
112 views

behavior of new 'each @array' in scalar context

Perl 5.14 gives us the extended each function which operates on arrays as well as hashes: When called in list context, returns a 2-element list consisting of the key and value for the next element ...
10
votes
7answers
2k views

How do I loop through a Python list by twos? [closed]

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 ...
10
votes
9answers
5k 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 ...
10
votes
8answers
6k 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 ...
9
votes
2answers
395 views

Does iteratee I/O make sense in non-functional languages?

In Haskell, Iteratee based I/O seems very attractive. Iteratees are a composable, safe, fast ways of doing I/O inspired by the 'fold' a.k.a. 'reduce' function in functional languages. Basically, if ...
9
votes
10answers
385 views

Is `if(items != null)` superfluous before `foreach(T item in items)`?

I often come across code like the following: if ( items != null) { foreach(T item in items) { //... } } Basically, the if condition ensures that foreach block will execute only if ...
9
votes
6answers
520 views

Java : Iteration through a HashMap, which is more efficient?

Given the following code, with two alternative ways to iterate through it, is there any performance difference between these two methods? Map<String, Integer> map = new ...
9
votes
8answers
632 views

Is there a better option for this code?

Animal public abstract class Animal { String name; public Animal(String name) { this.name = name; } } Lion public class Lion extends Animal { public Lion(String name) { super(name); ...
9
votes
8answers
970 views

Is it possible to merge iterators in Java?

Is it possible to merge iterators in Java? I have two iterators and I want to combine/merge them so that I could iterate though their elements in one go (in same loop) rather than two steps. Is that ...
9
votes
5answers
243 views

Iteration order of sets in Python

If I have two identical sets, meaning a == b gives me True, will they have the same iteration order? I tried it, and it works: >>> foo = set("abc") >>> bar = set("abc") >>> ...
9
votes
2answers
3k 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 ...
9
votes
4answers
543 views

Python, Huge Iteration Performance Problem

I'm doing an iteration through 3 words, each about 5 million characters long, and I want to find sequences of 20 characters that identifies each word. That is, I want to find all sequences of length ...
9
votes
3answers
9k views

For-Each Loop AS3: Is the direction guaranteed?

I would like to know the iteration order for the Array, Dictionary and Object types in AS3, for both the for-each and the for-in loops. Also what factors can change the iteration order of these loop ...
9
votes
4answers
2k views

Existing LINQ extension method similar to Parallel.For?

The linq extension methods for ienumerable are very handy ... but not that useful if all you want to do is apply some computation to each item in the enumeration without returning anything. So I was ...
9
votes
5answers
717 views

Is there a zip-like method in .Net?

In Python there is a really neat function called zip which can be used to iterate through two lists at the same time: list1 = [1, 2, 3] list2 = ["a", "b", "c"] for v1, v2 in zip(list1, list2): ...
9
votes
9answers
4k views

Using 'in' to match an attribute of Python objects in an array

I don't remember whether I was dreaming or not but I seem to recall there being a function which allowed something like, foo in iter_attr(array of python objects, attribute name) I've looked ...
8
votes
3answers
194 views

How would this snippet translate to Haskell?

I'm struggling with Haskell, and the idea of using recursion to iterate over things. For instance, how would // this might seem silly but I need to do it list1 = empty list list2 = list of numbers ...

1 2 3 4 5 17