Tagged Questions
An iterator is an object-oriented programming pattern which for the most part functions similarly to a pointer to an object inside a collection with the added ability to traverse through the collection in a defined manner, agnostic of the actual implementation or even object addresses in physical memory. Iterators may be further limited in particular traversal directions.
522
votes
10answers
119k views
The Python yield keyword explained
What is the use of the yield keyword in Python? What does it do?
For example, I'm trying to understand this code (**):
def node._get_child_candidates(self, distance, min_dist, max_dist):
if ...
59
votes
22answers
7k views
Why use iterators instead of array indices?
Take the following two lines of code:
for (int i = 0; i < some_vector.size(); i++)
{
//do stuff
}
And this:
for (some_iterator = some_vector.begin(); some_iterator != some_vector.end();
...
45
votes
10answers
2k views
Is an “infinite” iterator bad design?
Is it generally considered bad practice to provide Iterator implementations that are "infinite"; i.e. where calls to hasNext() always(*) return true?
Typically I'd say "yes" because the calling code ...
43
votes
10answers
16k views
Calling remove in foreach loop in Java
In Java, is it legal to call remove on a collection when iterating through the collection using a foreach loop? For instance:
List<String> names = ....
for (String name : names) {
// Do ...
41
votes
5answers
10k views
C++ STL Vectors: Get iterator from index?
So, I wrote a bunch of code that accesses elements in an stl vector by index[], but now I need to copy just a chunk of the vector. It looks like vector.insert(pos, first, last) is the function I ...
39
votes
5answers
19k views
C++ Creating my own Iterators
I'm trying to learn C++ so forgive me if this question demonstrates a lack of basic knowledge, you see, the fact is, I have a lack of basic knowledge.
I want some help working out how to create an ...
38
votes
4answers
21k views
Build a Basic Python Iterator
How would one create an iterative function (or iterator object) in python?
31
votes
4answers
636 views
Why use non-member begin and end functions in C++11?
Every standard container has a begin and end function for returning iterators for that container. However, C++11 has apparently introduced free functions called begin and end which call the begin and ...
28
votes
2answers
779 views
Iterator invalidation rules
What are the iterator invalidation rules for C++ containers?
Preferably in a summary list format.
(Note: This is meant to be an entry to Stack Overflow's C++ FAQ. If you want to critique the idea ...
27
votes
10answers
632 views
Is end() required to be constant in an STL map/set?
§23.1.2.8 in the standard states that insertion/deletion operations on a set/map will not invalidate any iterators to those objects (except iterators pointing to a deleted element).
Now, consider the ...
25
votes
4answers
592 views
Does std::vector::swap invalidate iterators?
If I swap two vectors, will their iterators remain valid, now just pointing to the "other" container, or will the iterator be invalidated?
That is, given:
using namespace std;
vector<int> ...
24
votes
13answers
3k views
C++ Iterators Considered Harmful?
At the Boost library conference today, Andrei Alexandrescu author of the book Modern C++ Design and the Loki C++ library, spoke about why iterators are bad, and he had a better solution.
I tried to ...
24
votes
3answers
2k views
Algorithm for implementing C# yield statement
I'd love to figure it out myself but I was wondering roughly what's the algorithm for converting a function with yield statements into a state machine for an enumerator? For example how does C# turn ...
23
votes
7answers
950 views
What is the Perl version of a Python iterator?
I am learning Perl at my work and enjoying it. I usually do my work in Python but boss wants Perl.
Most of the concepts in Python and Perl match nicely: Python dictionary=Perl hash; Python ...
23
votes
9answers
2k views
What is the purpose/advantage of using yield return iterators in C#?
All of the examples I've seen of using yield return x; inside a C# method could be done in the same way by just returning the whole list. In those cases, is there any benefit or advantage in using the ...
21
votes
8answers
740 views
When to write an iterator?
I know this is probably a silly question.. When would I need to write my own iterator? Is it just when designing my own container class? Are there any other times when I would want to create my own ...
21
votes
9answers
4k views
“On-line” (iterator) algorithms for estimating statistical median, mode, skewness, kurtosis?
Is there an algorithm to estimate the median, mode, skewness, and/or kurtosis of set of values, but that does NOT require storing all the values in memory at once?
I'd like to calculate the basic ...
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
3answers
566 views
Why is “!=” Used with Iterators?
I'm used to writing loops like this:
for (std::size_t Index = 0; Index < Foo.Size(); Index++)
{
// Do stuff with Foo[Index].
}
But when I see iterator loops in others' code, they look like ...
17
votes
7answers
436 views
Am I exposing too many iterators?
My class can have children and so I need to expose iterators. The render class needs to reverse iterate them which is why I have reverse iterators. But is there a way to have less of these because it ...
17
votes
5answers
529 views
Pros and Cons of Inversion of Control
Suppose I have a stream of [acme] objects that I want to expose via an API. I have two choices, callbacks and iterators.
API #1: Callbacks
// API #1
// This function takes a user-defined callback
...
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
3answers
2k views
Is Yield Return == IEnumerable & IEnumerator?
I just want to verify, is yield return a shortcut for implementing IEnumerable and IEnumerator?
Thanks,
John
16
votes
2answers
506 views
C++ non-iterator based range library?
I've been frustrated by the unhandiness of stl iterators and am looking for something more usable. In particular, a concept that is easier to map and filter, and one that is easier to implement too: ...
16
votes
15answers
4k views
Iterate with for loop or while loop?
I often see code like:
Iterator i = list.iterator();
while(i.hasNext()) {
...
}
but I write that (when Java 1.5 isn't available or for each can't be used) as:
for(Iterator i = list.iterator(); ...
15
votes
6answers
661 views
Yield in a recursive function
I am trying to do something to all the files under a given path. I don't want to collect all the file names beforehand then do something with them, so I tried this:
import os
import stat
def ...
15
votes
12answers
9k views
C++ iterators & loop optimization
I see a lot of c++ code that looks like this:
for( const_iterator it = list.begin(),
const_iterator ite = list.end();
it != ite; ++it)
As opposed to the more concise version:
for( ...
15
votes
11answers
2k views
Are const_iterators faster?
Our coding guidelines say prefer const_iterator, because they are little faster compared to normal iterator. It seems like compiler optimizes the code when you use the const _iterator.
Is it really ...
15
votes
4answers
9k views
What happens if you call erase() on a map element while iterating from begin to end?
In the following code I loop through a map and test if an element needs to be erased. Is it safe to erase the element and keep iterating or do I need to collect the keys in another container and do a ...
14
votes
6answers
248 views
How to implement an STL-style iterator and avoid common pitfalls?
I made a collection for which I want to provide an STL-style, random-access iterator. I was searching around for an example implementation of an iterator but I didn't find any. I know about the need ...
14
votes
6answers
265 views
How can I ease the syntactic overhead of checking iterator values in C++?
Basically, I'm a bit tired of writing:
std::map<key_t, val_t> the_map;
...
auto iterator = the_map.find(...);
if(iterator != the_map.end()) { // note the "inversed" logic and logically ...
14
votes
5answers
364 views
For input iterators, why a == b does not imply ++a == ++b?
§24.1.1/3 from C++03 Standard reads,
For input iterators, a == b does not imply ++a == ++b. (Equality does not
guarantee the substitution property or
referential transparency.) Algorithms
on ...
14
votes
7answers
2k views
Best way to get the index of an iterator?
I'm iterating over a vector and need the index the iterator is currently pointing at. AFAIK this can be done in two ways:
it - vec.begin()
std::distance(vec.begin(), it)
Which one is better or ...
14
votes
7answers
1k views
Rails: An elegant way to display a message when there are no elements in database
I realized that I'm writing a lot of code similar to this one:
<% unless @messages.blank? %>
<% @messages.each do |message| %>
<%# code or partial to display the message %>
...
14
votes
6answers
799 views
Joining a set of ordered-integer yielding Python iterators
Here is a seemingly simple problem: given a list of iterators that yield sequences of integers in ascending order, write a concise generator that yields only the integers that appear in every ...
14
votes
22answers
981 views
Is a variable named i unacceptable?
As far as variable naming conventions go, should iterators be named i or something more semantic like count? If you don't use i, why not? If you feel that i is acceptable, are there cases of iteration ...
13
votes
3answers
404 views
What is the status of ranges in C++?
Sometimes I get tired of all this my_vector.begin(), my_vector.end() noise. Last year at boostcon, Andrei Alexandrescu's keynote speech was titled Iterators Must Go (video)
Is there any progress on ...
13
votes
3answers
1k views
how to use iterator in c++?
I'm trying to calculate distance between 2 points.
The 2 points I stored in a vector in c++: (0,0) and (1,1).
I'm supposed to get results as
0
1.4
1.4
0
but the actual result that I got is
0
1
-1
...
13
votes
4answers
587 views
Clever Uses of .Net 2 Iterators
C# 2 and VB.Net 8 introduced a new feature called iterators, which were designed to make it easier to return enumerables and enumerators.
However, iterators are actually a limited form of coroutines, ...
13
votes
11answers
6k views
What's faster, iterating an STL vector with vector::iterator or with at()?
In terms of performance, what would work faster? Is there a difference? Is it platform dependent?
//1. Using vector<string>::iterator:
vector<string> vs = GetVector();
...
13
votes
7answers
3k views
Distinction between iterator and enumerator
An interview question for a .NET 3.5 job is "What is the difference between an iterator and an enumerator"?
This is a core distinction to make, what with LINQ, etc.
Anyway, what is the difference? I ...
13
votes
6answers
6k views
const and nonconst STL Iterators
What is the difference between a ::const_iterator and an ::iterator and where would you use one over the other?
12
votes
5answers
246 views
Pythonic way to iterate over bits of integer
Let's a=109 or 1101101 in binary. How do I iterate over bits of this number, eg: [64, 32, 8, 4, 1]
12
votes
2answers
251 views
End iterator invalidation rules
Regarding this question on iterator invalidation rules, it seems obvious that the spirit of the standard means, for example, that "an erase in the middle of the deque invalidates all the iterators and ...
12
votes
6answers
178 views
“sorted 1-d iterator” based on “2-d iterator” (Cartesian product of iterators)
I'm looking for a clean way to do this in Python:
Let's say I have two iterators "iter1" and "iter2": perhaps a prime number generator, and itertools.count(). I know a priori that both are are ...
12
votes
6answers
811 views
polymorphic iterators in C++
I'm trying to implement a polymorphic iterator in C++. Basically, I need this to be able to apply a filter, so that the iterator would skip some items depending on the associated condition. So I made ...
12
votes
3answers
711 views
Do STL iterators guarantee validity after collection was changed?
Lets say I have some kind of collection an I obtained an iterator for the beginning of it. Now lets say I modified the collection. Can I still use the iterator safely? (regardless of the type of the ...
12
votes
5answers
2k views
Is there a C++ iterator that can iterate over a file line by line?
I would like to get an istream_iterator-style iterator that returns each line of the file as a string rather than each word. Is this possible?
12
votes
4answers
350 views
Why is there a method iterator() on java.util.Collection
Why is there the method iterator() defined on the interface java.util.Collection when it already extends java.util.Iterable which has this very method defined.
I'm thinking some sort of backward ...
12
votes
9answers
1k views
What are the common misuse of using STL containers with iterators? [closed]
What are the common misuse of using STL containers with iterators?