"C++ 벡터 합치기"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ 벡터 합치기 <syntaxhighlight lang='console'> #include <iostream> #include <vector> using namespace std; int main() { vector<int> a = {1,2,3}; vector<int...)
 
2번째 줄: 2번째 줄:
;C++ 벡터 합치기
;C++ 벡터 합치기


<syntaxhighlight lang='console'>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>

2023년 9월 17일 (일) 17:46 판

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