C++ 집합 find()

Jmnote (토론 | 기여)님의 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 }}