//: C07:DequeOverflow.cpp {-bor} // From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison. // (c) 1995-2004 MindView, Inc. All Rights Reserved. // See source code use permissions stated in the file 'License.txt', // distributed with the code package available at www.MindView.net. // A deque is much more efficient than a vector when // pushing back a lot of elements, since it doesn't // require copying and destroying. //{L} Noisy #include #include #include "Noisy.h" using namespace std; int main(int argc, char* argv[]) { int size = 1000; if(argc >= 2) size = atoi(argv[1]); deque dn; Noisy n; for(int i = 0; i < size; i++) dn.push_back(n); cout << "\n cleaning up " << endl; } ///:~