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?
1.
2.
which is more efficient?or the same? |
||||
|
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. |
|||||||||||||||||||||
|
|
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(). |
|||||||||||||||
|
|
Initial criticisms: 1/ Typical tutorial example
There is no magic, but it brings up a question: is 2/ Improved
Furthermore, it introduces the 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
Combines the advantages of 4/ Boost-powered
Even terser than Unfortunately:
Note: in theory, one could make the case of the 5/ C++11 range-for statement
All the advantages:
And none of the issues (scope leak, preprocessor magic). Personally, I use C++11 range-for whenever I can (hobby projects) and 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. |
|||
|
|
|
I think that the first for loop is more certain. In case you insert/erase elements inside this for loop the
A safer version of the code above could be this:
|
|||
|
|
for(vector<int>::iterator it = a.begin(), end = a.end(); it != end; ++it)– iammilind Apr 27 '12 at 7:41