在C++中,你可以使用std::set
容器的成員函數find()
來判斷一個元素是否存在于集合中。find()
函數會返回一個指向找到元素的迭代器,如果沒有找到元素,則返回end()
迭代器。這里有一個簡單的示例:
#include <iostream>
#include <set>
int main() {
std::set<int> my_set = {1, 2, 3, 4, 5};
int target = 3;
auto it = my_set.find(target);
if (it != my_set.end()) {
std::cout << "元素 " << target << " 存在于集合中。" << std::endl;
} else {
std::cout << "元素 " << target << " 不存在于集合中。" << std::endl;
}
return 0;
}
在這個示例中,我們創建了一個包含整數的std::set
,然后使用find()
函數查找目標值3
。如果find()
返回的迭代器不等于end()
迭代器,那么我們就知道目標值存在于集合中。