C++stl-set查找和统计

C++stl-set查找和统计

功能描述:

对set容器进行查找数据以及统计数据
函数原型:

find(可以);  //查找key是否已经存在,若存在,返回该键的元素的迭代器,若不存在,返回set,end();
count(key);       //统计key的元素个数

代码示例:

#include
#include
using namespace std;
//set容器查找和统计
void test01()
{
       //查找
       set<int>s1;
       //插入数据
       s1.insert(10);
       s1.insert(20);
       s1.insert(30);
       s1.insert(40);
       set<int>::iterator pos = s1.find(300);
       if (pos != s1.end())
       {
              cout << "找到元素:" << *pos << endl;
       }
       else
       {
              cout << "未找到元素:" << endl;
       }
}
//统计
void test02()
{
       //查找
       set<int>s2;
       //插入数据
       s2.insert(100);
       s2.insert(200);
       s2.insert(300);
       s2.insert(400);
       //统计300的个数
       int num = s2.count(300);
       //对于set而言  统计结果  要么是0  要么是1
       cout << "num=" << num << endl;
}
int main()
{
       //test01();
       test02();
       return 0;
}

总结:

查找—find(返回的迭器)

统计—cout(对set,结果为0或者1)

你可能感兴趣的:(C++STL,C++,stl,set)