"C++ 집합 size()"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ 집합 size() ;C++ 집합 크기 ;C++ 집합 원소 개수 <syntaxhighlight lang='cpp' run> #include <iostream> #include <set> using namespace std; int main() {...)
 
10번째 줄: 10번째 줄:


int main() {
int main() {
     set<string> s;
     set<string> s = {"apple", "banana", "cherry"};
    s.insert("apple");
    s.insert("banana");
    s.insert("cherry");
 
     cout << s.size() << endl; // 3
     cout << s.size() << endl; // 3
     s.clear();
     s.clear();

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

1 개요

C++ 집합 size()
C++ 집합 크기
C++ 집합 원소 개수
#include <iostream>
#include <set>
using namespace std;

int main() {
    set<string> s = {"apple", "banana", "cherry"};
    cout << s.size() << endl; // 3
    s.clear();
    cout << s.size() << endl; // 0
}

2 같이 보기

3 참고

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