Add all the elements from vector Two to the end of vector One : vector elements « vector « C++ Tutorial






#include <vector>
#include <algorithm>
#include <iterator>
#include <iostream>
using namespace std;

void printVector(const vector<int>& v){
  copy(v.begin(), v.end(), ostream_iterator<int>(cout, " "));
  cout << endl;
}

int main(int argc, char** argv){
  vector<int> v1, v2;
  int i;

  v1.push_back(1);
  v1.push_back(2);
  v1.push_back(3);
  v1.push_back(5);

  // Insert it in the correct place
  v1.insert(v1.begin() + 3, 4);

  // Add elements 6 through 10 to v2
  for (i = 6; i <= 10; i++) {
    v2.push_back(i);
  }

  printVector(v1);
  printVector(v2);

  // add all the elements from v2 to the end of v1
  v1.insert(v1.end(), v2.begin(), v2.end());

  printVector(v1);

  return (0);
}








16.26.vector elements
16.26.1.Vector Creation and Element Access
16.26.2.Change element with pointer
16.26.3.Change element with const iterator
16.26.4.Accessing Elements in a Vector Using Array Semantics
16.26.5.Accessing Elements in a Vector Using Pointer Semantics (Iterators)
16.26.6.Set Element Values in a vector Using Array Semantics
16.26.7.Instantiate a vector with 10 elements (it can grow larger)
16.26.8.Instantiate a vector with 10 elements, each initialized to 90
16.26.9.Instantiate a vector to 5 elements taken from another
16.26.10.The first and last element in vector as pointed to by begin() and end() - 1
16.26.11.The first and last element in vector as pointed to by rbegin() and rend() - 1
16.26.12.Add elements to the end of vector with push_back
16.26.13.Constructing a Container That Has Identical Elements
16.26.14.Constructing a Container That Has Specified Values
16.26.15.Elements Being Created, Assigned, and Destroyed
16.26.16.Add all the elements from vector Two to the end of vector One
16.26.17.append one more element. This causes reallocation
16.26.18.Instantiate a vector with 4 elements, each initialized to 90
16.26.19.Access the elements of a vector through an iterator.