logo

C++ 벡터 삽입()

지정된 위치에 새 요소를 삽입하는 데 사용됩니다.

cpp 벡터 삽입()

통사론

벡터 v를 고려하십시오. 구문은 다음과 같습니다.

 insert(iterator,val); insert(iterator,n,val); insert(iterator,InputIterator first,InputIterator last); 

매개변수

    반복자:반복자는 새 요소가 삽입될 위치를 정의합니다.발: val은 삽입될 값을 지정합니다.N: 해당 값이 발생하는 횟수입니다.(첫번째,마지막): 삽입할 요소의 범위를 정의합니다.

반환 값

새로 삽입된 요소를 가리키는 반복자를 반환합니다.

실시예 1

간단한 예를 살펴보겠습니다.

 #include #include using namespace std; int main() { vector v{&apos;java&apos;}; stringstr=&apos;programs&apos;; v.insert(v.begin()+1,str); for(int i=0;i<v.size();i++) cout<<v[i]<<' '; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> java programs </pre> <p>In this example, string &apos;programs&apos; is inserted in vector &apos;v&apos; using insert() function.</p> <h2>Example 2</h2> <p>Let&apos;s see a simple example.</p> <pre> #include #include using namespace std; int main() { vector v{&apos;C&apos; ,&apos;Tutorials&apos;}; v.insert(v.begin()+1,2,&apos;C&apos;); for(int i=0;i<v.size();i++) cout<<v[i]<<' '; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> C CC Tutorials </pre> <h2>Example 3</h2> <p>Let&apos;s see a simple example.</p> <pre> #include #include using namespace std; int main() { vector v{1,2,3,4,5}; vector v1{6,7,8,9,10}; v.insert(v.end(),v1.begin(),v1.begin()+5); for(int i=0;i<v.size();i++) cout<<v[i]<<' '; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre></v.size();i++)></pre></v.size();i++)></pre></v.size();i++)>

이 예에서는 insert() 함수를 사용하여 문자열 'programs'가 벡터 'v'에 삽입됩니다.

실시예 2

간단한 예를 살펴보겠습니다.

 #include #include using namespace std; int main() { vector v{&apos;C&apos; ,&apos;Tutorials&apos;}; v.insert(v.begin()+1,2,&apos;C&apos;); for(int i=0;i<v.size();i++) cout<<v[i]<<\' \'; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> C CC Tutorials </pre> <h2>Example 3</h2> <p>Let&apos;s see a simple example.</p> <pre> #include #include using namespace std; int main() { vector v{1,2,3,4,5}; vector v1{6,7,8,9,10}; v.insert(v.end(),v1.begin(),v1.begin()+5); for(int i=0;i<v.size();i++) cout<<v[i]<<\' \'; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre></v.size();i++)></pre></v.size();i++)>

실시예 3

간단한 예를 살펴보겠습니다.

 #include #include using namespace std; int main() { vector v{1,2,3,4,5}; vector v1{6,7,8,9,10}; v.insert(v.end(),v1.begin(),v1.begin()+5); for(int i=0;i<v.size();i++) cout<<v[i]<<\' \'; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre></v.size();i++)>