C++ 벡터 합치기

Jmnote (토론 | 기여)님의 2023년 9월 17일 (일) 17:54 판 (→‎같이 보기)

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 }}