C++ STL의 vector insert() 함수는 지정된 위치의 요소 앞에 새 요소를 삽입하여 컨테이너의 크기를 늘리는 데 도움이 됩니다.
C++ STL에서 미리 정의된 함수입니다.
세 가지 유형의 구문으로 값을 삽입할 수 있습니다.
1. 위치와 값만 언급하여 값 삽입:
vector_name.insert(pos,value);
2. 위치, 값 및 크기를 언급하여 값 삽입:
vector_name.insert(pos,size,value);
3. 값을 삽입할 위치와 채워진 벡터의 반복자를 언급하여 다른 빈 벡터에 값을 삽입하면 채워진 벡터를 형성합니다.
empty_eector_name.insert(pos,iterator1,iterator2);
알고리즘
Begin Declare a vector v with values. Declare another empty vector v1. Declare another vector iter as iterator. Insert a value in v vector before the beginning. Insert another value with mentioning its size before the beginning. Print the values of v vector. Insert all values of v vector in v1 vector with mentioning the iterator of v vector. Print the values of v1 vector. End.
예시
#include<iostream> #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = { 50,60,70,80,90},v1; //declaring v(with values), v1 as vector. vector<int>::iterator iter; //declaring an iterator iter = v.insert(v.begin(), 40); //inserting a value in v vector before the beginning. iter = v.insert(v.begin(), 1, 30); //inserting a value with its size in v vector before the beginning. cout << "The vector1 elements are: \n"; for (iter = v.begin(); iter != v.end(); ++iter) cout << *iter << " "<<endl; // printing the values of v vector v1.insert(v1.begin(), v.begin(), v.end()); //inserting all values of v in v1 vector. cout << "The vector2 elements are: \n"; for (iter = v1.begin(); iter != v1.end(); ++iter) cout << *iter << " "<<endl; // printing the values of v1 vector return 0; }
출력
The vector1 elements are: 30 40 50 60 70 80 90 The vector2 elements are: 30 40 50 60 70 80 90