Hmm...I expanded your code to include timing:
#include <list>
#include <iostream>
#include <time.h>
#include <stdlib.h>
int main() {
std::list<double> items;
clock_t start = clock();
for(int i=0;i<10000000;i++){
items.push_back(rand());
}
clock_t finish = clock();
std::cout << "Time: " << double(finish-start)/CLOCKS_PER_SEC << "\n";
return 0;
}
I compiled with VC++ using: cl /O2b2 /GL test_list.cpp
Likewise, I compiled with g++, using: g++ -O3 test_list.cpp
Then I ran the two.
With VC++ I got: Time: 1.293.
With g++ I got: Time: 1.313.
That's a small enough difference that I think I'd need to test quite a bit more to be at all certain of saying VC++ produced significantly faster code, but I think it's enough to support a conclusion that VC++ is not producing significantly slower code.
You need to turn on optimization for timing results to mean anything.
items.reserve(10000000)right before the loop? – user1773602 Nov 27 '12 at 15:45reserve()inlist; you're thinkingvector. – Angew Nov 27 '12 at 15:46