Combine insert and end to add elements to the end of vector : vector insert « vector « C++ Tutorial






#include <iostream>
#include <cassert>
#include <algorithm>
#include <string>
#include <list>
#include <deque>
#include <vector>
using namespace std;

int main()
{
  vector<string> vec;


  vec.insert(vec.end(), "AAA");
  vec.insert(vec.end(), "BBBB");
  vec.insert(vec.end(), "CCCCC");


  vector<string>::iterator pos;


  for (pos=vec.begin(); pos!=vec.end(); ++pos) {
        cout << *pos << ' ';
  }

  return 0;
}
AAA BBBB CCCCC








16.18.vector insert
16.18.1.Insert element by index
16.18.2.Insert 10 duplicate value to vector
16.18.3.Insert one vector to another vector
16.18.4.Insert elements from array
16.18.5.Insert 25 at the beginning
16.18.6.Insert 2 numbers of value 45 at the end
16.18.7.Insert two elements from another container in position [1]
16.18.8.Insert the contents of the array into the end of the vector
16.18.9.Combine insert and end to add elements to the end of vector