make the vector as large as possible without reallocating : vector capacity « vector « C++ Tutorial






#include <algorithm>
#include <iostream>
#include <vector>

using namespace std;

template <class T>
void print(T& c){
   for( typename T::iterator i = c.begin(); i != c.end(); i++ ){
      std::cout << *i << endl;
   }
}

int main( )
{
   vector<double> v( 5, 2.78 );
   v[2] = 0.0;

   // make the vector as large as possible without reallocating
   v.resize( v.capacity(), 2.78 );

}








16.7.vector capacity
16.7.1.make a big vector and then deallocate all its memory
16.7.2.make a big vector and then minimize its memory
16.7.3.make the vector as large as possible without reallocating
16.7.4.Demonstrating the STL vector capacity
16.7.5.Demonstrating the STL vector capacity and reserve functions