"C++ 집합"의 두 판 사이의 차이

2번째 줄: 2번째 줄:
;C++ set
;C++ set
;C++ 집합, C++ 세트, C++ 셋
;C++ 집합, C++ 세트, C++ 셋
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <set>
using namespace std;
int main() {
    set<string> s;
    s.insert("apple");
    s.insert("banana");
    s.insert("cherry");
    s.insert("apple");
   
    for(auto& el: s) {
        cout << el << " ";
    }
}
</syntaxhighlight>


==같이 보기==
==같이 보기==

2023년 9월 9일 (토) 15:48 판

1 개요

C++ set
C++ 집합, C++ 세트, C++ 셋
#include <iostream>
#include <set>
using namespace std;

int main() {
    set<string> s;
    s.insert("apple");
    s.insert("banana");
    s.insert("cherry");
    s.insert("apple");
    
    for(auto& el: s) {
        cout << el << " ";
    }
}

2 같이 보기

3 참고

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