C++ 집합을 벡터로 변환

Jmnote (토론 | 기여)님의 2023년 12월 17일 (일) 00:29 판 (새 문서: ==개요== ;C++ set to vector <syntaxhighlight lang='console'> #include <iostream> #include <set> #include <vector> using namespace std; int main() { set<int> s = {1,3,5,7};...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ set to vector
#include <iostream>
#include <set>
#include <vector>
using namespace std;

int main() {
    set<int> s = {1,3,5,7};
    vector<int> v;
    for(const auto& el: s) v.push_back(el);
    for(const auto& el: v) cout << el << ' '; // 1 3 5 7 
}

2 같이 보기

3 참고

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