Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
vector<int> a;

1.

for(vector<int>::iterator it = a.begin(); it != a.end(); ++it)

2.

vector<int>::iterator end = a.end();
for(vector<int>::iterator it = a.begin(); it != end; ++it)

which is more efficient?or the same?

share|improve this question
2  
2nd form can be better written as: for(vector<int>::iterator it = a.begin(), end = a.end(); it != end; ++it) – iammilind Apr 27 '12 at 7:41

4 Answers

2nd is more efficient as it only requires creating the end iterator once.

A smart compiler may optimize the first one to be the second, but you cannot be guaranteed that that will happen.

It would actually be a bit of a complicated optimization because the compiler would need to be 100% certain that any subsequent call to end() will have no additional effects or return anything different. Basically, it would need to know that at least over the loop, end() always returns something such that end() == previous call to end(). Whether or not compilers do that optimization is not guaranteed.

share|improve this answer
1  
Don't agree that compiler can optimize 1st way to be of second, as the vector can be changed in the body. It might not be legal to change vector inside the loop though! – tuxuday Apr 27 '12 at 7:19
1  
@tuxuday In short -- Possible, yes. Definite: no. (Edit: You are right though that if the vector is modified, then the compiler definitely cannot optimize that) – Corbin Apr 27 '12 at 7:20
1  
No, even if it's return were constant it would not be definitely possible without analyzing more. What if end() had a side effect? Then even if the return was const it still could not be optimized. What I'm saying is that the compiler would have to analyze the code to ensure that subsequent calls to end() would return the same thing. The compiler is not depending on language features in this situation, it's depending on static analysis. – Corbin Apr 27 '12 at 7:38
1  
I'm sorry, @tuxuday, but I'm not sure how else I can explain this. Basically the compiler can do voodoo magic, mathematically prove that for all iterations of the loop all calls to end() will == each other. It's not exactly a simple task considering all of the possibilities that the compiler must examine. But yes, it is possible. – Corbin Apr 27 '12 at 7:46
1  
@tuxuday: there are several conditions to optimize away a function call. The first is that the compiler should know (or infer) that the function has no side effect, the second is that it should know (or infer) that the function will return the same value each time. First is usually provable for templates, however here second is not so easy: if you pass a reference to the vector (even a const reference) to another function within the loop body, then how can the compiler know that this function does not modify the vector in any way ? – Matthieu M. Apr 27 '12 at 7:51
show 20 more comments

2nd way is obviously better, as it calls a.end() only once. In essence if there are N nodes in your tree then you save N calls to a.end().

share|improve this answer
5  
Doesn't he save N - 1 calls since he does make one call? – dutt Apr 27 '12 at 7:17
lol! That is true. – tuxuday Apr 27 '12 at 7:31
2  
Actually he does save N calls. In the second case end() is called N+1 times(For N nodes + failure condition) – tuxuday Apr 27 '12 at 7:43
Whether the difference in performance is significant depends. It usually isn't, and the first example is idiomatic. Which one is "better" thus depends on context. In most cases, the first is, because it is idiomatic. In specific applications, where performance is an issue, it may be worth universally adopting a different idiom; in such cases, I'd go with defining both the running iterator and end in the initialization part of the for. – James Kanze Apr 27 '12 at 8:01
@tuxday: Ah yea, true. I forgot about the failure attempt. – dutt Apr 27 '12 at 13:42

Initial criticisms:

1/ Typical tutorial example

for(vector<int>::iterator it = a.begin(); it != a.end(); ++it)

There is no magic, but it brings up a question: is a ever modified in the loop that the end bound may vary ?

2/ Improved

vector<int>::iterator end = a.end();
for(vector<int>::iterator it = a.begin(); it != end; ++it)

a.end() is only executed once, it seems. However since end is not const, it may be modified inside the loop.

Furthermore, it introduces the end identifier in the outer scope, polluting it.

So there is a potential gain in performance, but not much in clarity. Also, it's far more verbose.


I would propose several other ways:

3/ Best Manual

for(vector<int>::iterator it = a.begin(), end = a.end(); it != end; ++it)

Combines the advantages of v1 (quite terse, no outer scope pollution) and v2 (performance), however it is still unclear if end is ever modified within the loop body.

4/ Boost-powered

BOOST_FOREACH(int& i, a)

Even terser than v1, immediately identifiable at a glance, no outer scope leak, and guarantee of full iteration (it's not possible to modify the bounds).

Unfortunately:

  • there are issues with commas in the type of the variable (because it relies on the preprocessor)
  • compile-time errors are completely cryptic (because it relies on the preprocessor)

Note: in theory, one could make the case of the std::foreach algorithm here, but honestly... there is too much effort involved in defining a predicate outside and it breaks code locality.

5/ C++11 range-for statement

for (int& i: a)

All the advantages:

  • Extremely Terse
  • As performant as the best C++ hand-written loop
  • Guaranteed full iteration, no questions asked

And none of the issues (scope leak, preprocessor magic).


Personally, I use C++11 range-for whenever I can (hobby projects) and BOOST_FOREACH otherwise (at work).

I avoid like the plague modifying the container I am iterating on, preferring to rely on STL algorithms when I need to filter/remove elements... It's too easy to mess up with the boundary conditions and iterator invalidations otherwise.

share|improve this answer

I think that the first for loop is more certain. In case you insert/erase elements inside this for loop the end iterator you have defined is invalidated. For example:

vector<int>::iterator mend = int_vec.end(), mbegin = int_vec.begin();
while(mbegin != mend)
{
    cout << *mbegin << " ";
    int_vec.erase(mbegin);
    // mbegin is automatically invalidated
    // execution of this program causes bizarre runtime_error !
    // never try this at home !
}

A safer version of the code above could be this:

vector<int>::iterator mend = int_vec.end(), mbegin = int_vec.begin();
while(mbegin != mend)
{
    cout << *mbegin << " ";
    int_vec.erase(mbegin);
    mbegin = int_vec.begin(); // ok, mbegin updated.
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.