C++ 집합 find()

Jmnote (토론 | 기여)님의 2023년 9월 10일 (일) 11:43 판 (새 문서: ==개요== ;C++ 집합 find() ;C++ 집합 원소 있는지 확인 <syntaxhighlight lang='cpp'> #include <iostream> #include <set> using namespace std; int main() { set<string> s...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}