A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/cpp_standard_library/cpp_vector_insert_single_element.htm below:

C++ Vector Insert Single Element

C++ Vector Library - insert() Function Description

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

This function increases container size by one.

Declaration

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

C++98
iterator insert (iterator position, const value_type& val);
C++11
iterator insert (const_iterator position, const value_type& val);
Parameters 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 = {3, 4, 5};

   auto it = v.insert(v.begin(), 2);
   v.insert(it, 1);

   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 −

1
2
3
4
5

vector.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4