C++ Vector Library - insert() Function



Description

The C++ function std::vector::insert() extends vector by inserting new elements in the container. Reallocation happens if there is need of more space

This function increases container size by n.

Declaration

Following is the declaration for std::vector::insert() function form std::vector header.

C++98

void insert (iterator position, size_type n, const value_type& val);

C++11

iterator insert (const_iterator position, size_type n, const value_type& val);

Parameters

  • position − Index in the vector where new element to be inserted.

  • n − Number of element to be inserted.

  • val − Value to be assigned to newly inserted element.

Return value

Returns an iterator which points to the newly inserted element.

Time complexity

Linear i.e. O(n)

Example

The following example shows the usage of std::vector::insert() function.

#include <iostream>
#include <vector>

using namespace std;

int main(void) {
   vector<int> v = {5};

   v.insert(v.begin(), 4, 5);

   for (auto it = v.begin(); it != v.end(); ++it)
      cout << *it << endl;

   return 0;
}

Let us compile and run the above program, this will produce the following result −

5
5
5
5
5
vector.htm
Advertisements