你可以使用std::set
中的count
函数来统计元素的数量。count
函数接受一个元素作为参数,并返回set
中与该元素相等的元素的数量。
示例代码如下:
#include#include int main() { std::set mySet = {1, 2, 3, 4, 4, 5}; int element = 4; int count = mySet.count(element); std::cout << "Element " << element << " appears " << count << " times in the set." << std::endl; return 0; }
在这个例子中,我们创建了一个包含重复元素的set
,然后使用count
函数统计特定元素的数量。