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

(새 문서: ==개요== ;C++ 집합 find() ;C++ 집합 원소 있는지 확인 <syntaxhighlight lang='cpp'> #include <iostream> #include <set> using namespace std; int main() { set<string> s...)
 
16번째 줄: 16번째 줄:


==같이 보기==
==같이 보기==
* [[C++ 집합 s.end()]]
* [[C++ 집합 end()]]
* [[C++ 집합 count()]]
* [[C++ 집합 lower_bound()]]
* [[C++ 집합 upper_bound()]]


==참고==
==참고==

2023년 9월 10일 (일) 11:44 판

1 개요

C++ 집합 find()
C++ 집합 원소 있는지 확인
#include <iostream>
#include <set>
using namespace std;

int main() {
    set<string> s = {"apple", "banana", "cherry"};
    cout << (s.find("apple") != s.end()) << endl; // 1
    cout << (s.find("lemon") != s.end()) << endl; // 0
}

2 같이 보기

3 참고

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