C++ 벡터 합치기

Jmnote (토론 | 기여)님의 2023년 9월 17일 (일) 17:46 판 (새 문서: ==개요== ;C++ 벡터 합치기 <syntaxhighlight lang='console'> #include <iostream> #include <vector> using namespace std; int main() { vector<int> a = {1,2,3}; vector<int...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ 벡터 합치기
#include <iostream>
#include <vector>
using namespace std;

int main() {
    vector<int> a = {1,2,3};
    vector<int> b = {8,9};
    
    vector<int> c;
    c.reserve(a.size()+b.size());
    c.insert(c.end(), a.begin(), a.end());
    c.insert(c.end(), b.begin(), b.end());
    for(int n: c) cout << n << ' '; // 1 2 3 8 9
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}