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

(새 문서: ==개요== ;C++ 벡터 합치기 <syntaxhighlight lang='console'> #include <iostream> #include <vector> using namespace std; int main() { vector<int> a = {1,2,3}; vector<int...)
 
 
(같은 사용자의 중간 판 4개는 보이지 않습니다)
2번째 줄: 2번째 줄:
;C++ 벡터 합치기
;C++ 벡터 합치기


<syntaxhighlight lang='console'>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
8번째 줄: 8번째 줄:


int main() {
int main() {
     vector<int> a = {1,2,3};
     vector<int> a = {11, 1};
     vector<int> b = {8,9};
     vector<int> b = {1, 12, 2};
      
      
     vector<int> c;
     vector<int> c;
15번째 줄: 15번째 줄:
     c.insert(c.end(), a.begin(), a.end());
     c.insert(c.end(), a.begin(), a.end());
     c.insert(c.end(), b.begin(), b.end());
     c.insert(c.end(), b.begin(), b.end());
     for(int n: c) cout << n << ' '; // 1 2 3 8 9
     for(int n: c) cout << n << ' '; // 11 1 1 12 2
}
}
</syntaxhighlight>
</syntaxhighlight>


==같이 보기==
==같이 보기==
{{z컬럼3|
* [[C++ 벡터]]
* [[C++ 벡터]]
* [[C++ 벡터 insert()]]
* [[C++ 벡터 reserve()]]
* [[C++ 문자열 합치기]]
* [[C++ 문자열 합치기]]
* [[리스트 합치기]]
}}


[[분류: C++ 벡터]]
[[분류: C++ 벡터]]

2023년 9월 17일 (일) 17:56 기준 최신판

1 개요[ | ]

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

int main() {
    vector<int> a = {11, 1};
    vector<int> b = {1, 12, 2};
    
    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 << ' '; // 11 1 1 12 2
}

2 같이 보기[ | ]

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