Insert element at specific position : vector insert « Vector « C++






Insert element at specific position

   
#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);

  printVector(v1);

  return (0);
}
  
    
    
  








Related examples in the same category

1.Insert element by index
2.Insert 10 duplicate value to vector
3.Insert one vector to another vector
4.Insert elements from array
5.Combine insert and end to add elements to the end of vector
6.Insert characters into vector. An iterator to the inserted object is returned
7.Create and initialize vector with float number array
8.Appending values to Vector Containers after sorting
9.Inserts an element into a vector at given position