当前位置:   article > 正文

C++提高笔记(六)---STL函数对象、STL常用算法(遍历、查找)

C++提高笔记(六)---STL函数对象、STL常用算法(遍历、查找)

1、STL-函数对象

1.1函数对象

1.1.1函数对象概念

概念:

重载函数调用操作符的类,其对象常称为函数对象

函数对象使用重载的()时,行为类似函数调用,也叫仿函数

本质:函数对象(仿函数)是一个,不是一个函数

1.1.2 函数对象使用

特点:

函数对象在使用时,可以像普通函数那样调用,可以有参数,可以有返回值

函数对象超出普通函数的概念,函数对象内部可以有自己的状态

函数对象可以作为参数传递

  1. #include <iostream>
  2. using namespace std;
  3. #include<string>
  4. //函数对象(仿函数)
  5. //函数对象在使用时,可以像普通函数那样调用,可以有参数,可以有返回值
  6. //函数对象超出普通函数的概念,函数对象内部可以有自己的状态
  7. //函数对象可以作为参数传递
  8. class MyAdd
  9. {
  10. public:
  11. int operator()(int v1, int v2)
  12. {
  13. return v1 + v2;
  14. }
  15. };
  16. //1、函数对象在使用时,可以像普通函数那样调用,可以有参数,可以有返回值
  17. void test01()
  18. {
  19. MyAdd myadd;
  20. cout << myadd(10, 10) << endl;
  21. }
  22. //2、函数对象超出普通函数的概念,函数对象内部可以有自己的状态
  23. class MyPrint
  24. {
  25. public:
  26. MyPrint()
  27. {
  28. this->count = 0;
  29. }
  30. void operator()(string text)
  31. {
  32. cout << text << endl;
  33. this->count++;
  34. }
  35. int count;//内部自己状态
  36. };
  37. void test02()
  38. {
  39. MyPrint myprint;
  40. myprint("hello world!");
  41. myprint("hello world!");
  42. myprint("hello world!");
  43. myprint("hello world!");
  44. cout << "MyPrint调用的次数:" << myprint.count << endl;
  45. }
  46. //3、函数对象可以作为参数传递
  47. void doPrint(MyPrint& mp, string text)
  48. {
  49. mp(text);
  50. }
  51. void test03()
  52. {
  53. MyPrint myprint;
  54. doPrint(myprint, "hello C++");
  55. }
  56. int main()
  57. {
  58. test01();
  59. test02();
  60. test03();
  61. system("pause");
  62. return 0;
  63. }

输出结果:

  1. 20
  2. hello world!
  3. hello world!
  4. hello world!
  5. hello world!
  6. MyPrint调用的次数:4
  7. hello C++
  8. 请按任意键继续. . .

1.2谓词

1.2.1谓词对象

概念:

        返回bool类型的仿函数称为谓词

        如果operator()接受一个参数,那么叫做一元谓词

        如果operator()接受二个参数,那么叫做二元谓词

1.2.2一元谓词

  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. //仿函数 返回值类型是bool数据类型 称为谓词
  6. //如果operator()接受一个参数,那么叫做一元谓词
  7. class GreaterFive
  8. {
  9. public:
  10. bool operator()(int val)
  11. {
  12. return val > 5;
  13. }
  14. };
  15. void test01()
  16. {
  17. vector<int>v;
  18. for (int i = 0; i < 10; i++)
  19. {
  20. v.push_back(i);
  21. }
  22. //查找容器中 是否有大于5的数字
  23. //GreaterFive() 匿名函数对象
  24. vector<int>::iterator it = find_if(v.begin(), v.end(), GreaterFive());
  25. if (it == v.end())
  26. {
  27. cout << "未找到" << endl;
  28. }
  29. else
  30. {
  31. cout << "找到了大于5的数字为:" << *it << endl;
  32. }
  33. }
  34. int main()
  35. {
  36. test01();
  37. system("pause");
  38. return 0;
  39. }

输出结果:

  1. 找到了大于5的数字为:6
  2. 请按任意键继续. . .

1.2.3二元谓词

  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. //仿函数 返回值类型是bool数据类型 称为谓词
  6. //二元谓词
  7. class MyCompare
  8. {
  9. public:
  10. bool operator()(int v1,int v2)
  11. {
  12. return v1 > v2;
  13. }
  14. };
  15. void test01()
  16. {
  17. vector<int>v;
  18. v.push_back(30);
  19. v.push_back(20);
  20. v.push_back(50);
  21. v.push_back(10);
  22. v.push_back(40);
  23. sort(v.begin(), v.end());//默认升序
  24. for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
  25. {
  26. cout << *it << " ";
  27. }
  28. cout << endl;
  29. //使用函数对象,改变算法策略,变为降序
  30. sort(v.begin(), v.end(), MyCompare());
  31. cout << "---------------------------" << endl;
  32. for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
  33. {
  34. cout << *it << " ";
  35. }
  36. cout << endl;
  37. }
  38. int main()
  39. {
  40. test01();
  41. system("pause");
  42. return 0;
  43. }

输出结果:

  1. 10 20 30 40 50
  2. ---------------------------
  3. 50 40 30 20 10
  4. 请按任意键继续. . .

 1.3内建函数对象

1.3.1内建函数对象意义

概念:STL内建了一些函数对象

分类:
                算术仿函数
                关系仿函数
                逻辑仿函数

用法:这些仿函数所产生的对象,用法和一般函数完全相同。使用内建函数对象,需要引入头文件#include<functional>

1.3.2算术仿函数

功能描述:实现四则运算。其中negate是一元运算,其他都是二元运算

仿函数原型:

  1. template<class T>T plus<T> //加法仿函数
  2. template<class T>T minus<T> //减法仿函数
  3. template<class T>T multiplies<T> //乘法仿函数
  4. template<class T>T divides<T> //除法仿函数
  5. template<class T>T modulus<T> //取模仿函数
  6. template<class T>T negate<T> //取反仿函数
  1. #include <iostream>
  2. using namespace std;
  3. #include<functional>//内建函数对象头文件
  4. //内建函数对象 算术仿函数
  5. //template<class T>T plus<T> //加法仿函数
  6. //template<class T>T minus<T> //减法仿函数
  7. //template<class T>T multiplies<T> //乘法仿函数
  8. //template<class T>T divides<T> //除法仿函数
  9. //template<class T>T modulus<T> //取模仿函数
  10. //template<class T>T negate<T> //取反仿函数
  11. //negate 一元仿函数 取反仿函数
  12. void test01()
  13. {
  14. negate<int>n;
  15. cout << n(50) << endl;
  16. }
  17. //plus 二元仿函数 加法
  18. void test02()
  19. {
  20. plus<int>p;//默认传入同种数据类型,不能传入不同种数据类型
  21. cout << p(10, 20) << endl;
  22. }
  23. int main()
  24. {
  25. test01();
  26. test02();
  27. system("pause");
  28. return 0;
  29. }

输出结果:

  1. -50
  2. 30
  3. 请按任意键继续. . .

1.3.3关系仿函数

功能描述:实现关系对比

仿函数原型:(最常用的是大于)

  1. template<class T> bool equal_to<T> //等于
  2. template<class T> bool not_equal _to<T> //不等于
  3. template<class T> bool greater<T> //大于
  4. template<class T> bool greater_equal<T> //大于等于
  5. template<class T> bool less<T> //小于
  6. template<class T> bool less_equal<T> //小于等于
  1. #include <iostream>
  2. using namespace std;
  3. #include<functional>//内建函数对象头文件
  4. #include<vector>
  5. #include<algorithm>
  6. //内建函数对象 关系仿函数
  7. //template<class T> bool equal_to<T> //等于
  8. //template<class T> bool not_equal _to<T> //不等于
  9. //template<class T> bool greater<T> //大于
  10. //template<class T> bool greater_equal<T> //大于等于
  11. //template<class T> bool less<T> //小于
  12. //template<class T> bool less_equal<T> //小于等于
  13. //大于 greater
  14. class MyCompare
  15. {
  16. public:
  17. bool operator()(int v1, int v2)
  18. {
  19. return v1 > v2;
  20. }
  21. };
  22. void test01()
  23. {
  24. vector<int>v;
  25. v.push_back(10);
  26. v.push_back(30);
  27. v.push_back(40);
  28. v.push_back(50);
  29. v.push_back(20);
  30. for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
  31. {
  32. cout << *it << " ";
  33. }
  34. cout << endl;
  35. //降序
  36. //sort(v.begin(), v.end(), MyCompare()); //自己重载仿函数
  37. sort(v.begin(), v.end(), greater<int>());//内建函数对象(仿函数)greater,效果一致
  38. for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
  39. {
  40. cout << *it << " ";
  41. }
  42. cout << endl;
  43. }
  44. int main()
  45. {
  46. test01();
  47. system("pause");
  48. return 0;
  49. }

输出结果:

  1. 10 30 40 50 20
  2. 50 40 30 20 10
  3. 请按任意键继续. . .

1.3.4逻辑仿函数

功能描述:实现逻辑运算

函数原型:

  1. template<class T> bool logical_and<T> //逻辑与
  2. template<class T> bool 1ogical_or<T> //逻辑或
  3. template<class T> bool logical_not<T> //逻辑非
  1. #include <iostream>
  2. using namespace std;
  3. #include<functional>//内建函数对象头文件
  4. #include<vector>
  5. #include<algorithm>
  6. //内建函数对象 关系仿函数
  7. //template<class T> bool logical_and<T> //逻辑与
  8. //template<class T> bool 1ogical_or<T> //逻辑或
  9. //template<class T> bool logical_not<T> //逻辑非
  10. //逻辑非 logical_not
  11. void test01()
  12. {
  13. vector<bool>v;
  14. v.push_back(true);
  15. v.push_back(false);
  16. v.push_back(true);
  17. v.push_back(false);
  18. for (vector<bool>::iterator it = v.begin(); it != v.end(); it++)
  19. {
  20. cout << *it << " ";
  21. }
  22. cout << endl;
  23. //利用逻辑非,将容器v搬运到容器v2中,并执行取反的操作
  24. vector<bool>v2;
  25. v2.resize(v.size());
  26. transform(v.begin(), v.end(), v2.begin(), logical_not<bool>());
  27. for (vector<bool>::iterator it = v2.begin(); it != v2.end(); it++)
  28. {
  29. cout << *it << " ";
  30. }
  31. cout << endl;
  32. }
  33. int main()
  34. {
  35. test01();
  36. system("pause");
  37. return 0;
  38. }

输出结果:

  1. 1 0 1 0
  2. 0 1 0 1
  3. 请按任意键继续. . .

2、STL-常用算法

概述:

算法主要是由头文件<algorithm><functional><numeric>组成

<algorithm>是所有STL头文件中最大的一个,范围涉及到比较,交换,查找,遍历操作,复制,修改等

<numeric>体积很小,只包括几个在序列上面进行简单数学运算的模板函数

<functional>定义了一些模板类,用以声明函数对象

2.1 常用遍历算法

学习目标:掌握常用的遍历算法

算法简介:

  1. for_each //遍历容器
  2. transform //搬运容器到另一个容器中

2.1.1 for_each

功能描述:实现遍历容器

函数原型:

  1. for_each(iterator beg, iterator end, _func);
  2. // 遍历算法 遍历容器元素
  3. // beg 开始迭代器
  4. // end 结束迭代器
  5. // _func函数或者函数对象
  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. //常用遍历算法 for_each
  6. //普通函数
  7. void print01(int val)
  8. {
  9. cout << val << " ";
  10. }
  11. //仿函数
  12. class print02
  13. {
  14. public:
  15. void operator()(int val)
  16. {
  17. cout << val << " ";
  18. }
  19. };
  20. void test01()
  21. {
  22. vector<int>v;
  23. for (int i = 0; i < 10; i++)
  24. {
  25. v.push_back(i);
  26. }
  27. for_each(v.begin(), v.end(), print01);//普通函数放函数名
  28. cout << endl;
  29. for_each(v.begin(), v.end(), print02());//仿函数要放函数对象,加()
  30. cout << endl;
  31. }
  32. int main()
  33. {
  34. test01();
  35. system("pause");
  36. return 0;
  37. }

输出结果:

  1. 0 1 2 3 4 5 6 7 8 9
  2. 0 1 2 3 4 5 6 7 8 9
  3. 请按任意键继续. . .

总结:for_each在实际开发中是最常用遍历方法,需要熟练掌握 

2.1.2 transform

功能描述:搬运容器到另一个容器中

函数原型:

  1. transform(iterator begl,iterator end1,iterator beg2,_func);
  2. //beg1 源容器开始迭代器
  3. //end1 源容器结束迭代器
  4. //beg2 目标容器开始迭代器
  5. //_func 函数或者函数对象
  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. //常用遍历算法 transform
  6. //仿函数
  7. class Transform
  8. {
  9. public:
  10. int operator()(int v)
  11. {
  12. return v + 10;
  13. }
  14. };
  15. class MyPrint
  16. {
  17. public:
  18. void operator()(int v)
  19. {
  20. cout << v << " ";
  21. }
  22. };
  23. void test01()
  24. {
  25. vector<int>v;
  26. for (int i = 0; i < 10; i++)
  27. {
  28. v.push_back(i);
  29. }
  30. vector<int>vTarget;//目标容器
  31. vTarget.resize(v.size());//目标容器 需要提前开辟空间,否则搬运不成功
  32. transform(v.begin(), v.end(), vTarget.begin(), Transform());//可以在最后一个函数对搬运的数据进行运算或者改变 例如这次加10
  33. for_each(vTarget.begin(), vTarget.end(), MyPrint());//仿函数要放函数对象,加()
  34. cout << endl;
  35. }
  36. int main()
  37. {
  38. test01();
  39. system("pause");
  40. return 0;
  41. }

输出结果:

  1. 10 11 12 13 14 15 16 17 18 19
  2. 请按任意键继续. . .

2.2常用查找算法

学习目标:掌握常用的查找算法

算法简介:

  1. find //查找元素
  2. find_if //按条件查找元素
  3. adjacent_find //查找相邻重复元素
  4. binary_search //二分查找法
  5. count //统计元素个数
  6. count_if //按条件统计元素个数

2.2.1 find

功能描述:查找指定元素,找到返回指定元素的迭代器,找不到返回结束迭代器end()

函数原型:

  1. find(iterator beg, iterator end, value);
  2. // 按值查找元素,找到返回指定校置迭代器,找不到返回结束迭代器位置
  3. // beg 开始迭代器
  4. // end 结束迭代器
  5. // value 查找的元素
  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<string>
  5. #include<algorithm>
  6. //常用查找算法 find
  7. //查找 内置数据类型
  8. void test01()
  9. {
  10. vector<int>v;
  11. for (int i = 0; i < 10; i++)
  12. {
  13. v.push_back(i);
  14. }
  15. vector<int>::iterator pos = find(v.begin(), v.end(), 5);
  16. if (pos == v.end())
  17. {
  18. cout << "没有找到!" << endl;
  19. }
  20. else
  21. {
  22. cout << "找到:" << *pos << endl;
  23. }
  24. }
  25. class Person
  26. {
  27. public:
  28. Person(string name, int age)
  29. {
  30. this->m_Name = name;
  31. this->m_Age = age;
  32. }
  33. //重载== 底层find知道如何对比Person数据类型
  34. bool operator==(const Person& p)
  35. {
  36. if (this->m_Name == p.m_Name && this->m_Age == p.m_Age)
  37. {
  38. return true;
  39. }
  40. else
  41. {
  42. return false;
  43. }
  44. }
  45. string m_Name;
  46. int m_Age;
  47. };
  48. //查找 自定义数据类型
  49. void test02()
  50. {
  51. vector<Person>v;
  52. //创建数据
  53. Person p1("aaa", 10);
  54. Person p2("bbb", 20);
  55. Person p3("ccc", 30);
  56. Person p4("ddd", 40);
  57. Person pp("bbb", 20);//查找有无与此人相同的人
  58. //放入到容器中
  59. v.push_back(p1);
  60. v.push_back(p2);
  61. v.push_back(p3);
  62. v.push_back(p4);
  63. //查找
  64. vector<Person>::iterator pos = find(v.begin(), v.end(), pp);
  65. if (pos == v.end())
  66. {
  67. cout << "没有找到!" << endl;
  68. }
  69. else
  70. {
  71. cout << "找到此人 姓名:" << pos->m_Name << " 年龄:" << pos->m_Age << endl;
  72. }
  73. }
  74. int main()
  75. {
  76. test01();
  77. test02();
  78. system("pause");
  79. return 0;
  80. }

输出结果:

  1. 找到:5
  2. 找到此人 姓名:bbb 年龄:20
  3. 请按任意键继续. . .

2.2.2 find_if

功能描述:按条件查找元素

函数原型:

  1. find_if(iterator beg,iterator end,_Pred);
  2. // 按值查找元素,找到返回指定位置选代器,找不到返回结束迭代器位置
  3. // beg 开始迭代器
  4. // end 结束迭代器
  5. //_Pred 函数或者谓词(返回bool类型的仿函数)
  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<string>
  5. #include<algorithm>
  6. //常用查找算法 find_if
  7. //1、查找 内置数据类型
  8. class GreaterFive
  9. {
  10. public:
  11. bool operator()(int val)
  12. {
  13. return val > 5;
  14. }
  15. };
  16. void test01()
  17. {
  18. vector<int>v;
  19. for (int i = 0; i < 10; i++)
  20. {
  21. v.push_back(i);
  22. }
  23. vector<int>::iterator pos = find_if(v.begin(), v.end(), GreaterFive());
  24. if (pos == v.end())
  25. {
  26. cout << "没有找到!" << endl;
  27. }
  28. else
  29. {
  30. cout << "找到大于5的数字 为:" << *pos << endl;
  31. }
  32. }
  33. class Person
  34. {
  35. public:
  36. Person(string name, int age)
  37. {
  38. this->m_Name = name;
  39. this->m_Age = age;
  40. }
  41. string m_Name;
  42. int m_Age;
  43. };
  44. class Greater20
  45. {
  46. public:
  47. bool operator()(Person& p)
  48. {
  49. return p.m_Age > 20;
  50. }
  51. };
  52. //2、查找 自定义数据类型
  53. void test02()
  54. {
  55. vector<Person>v;
  56. //创建数据
  57. Person p1("aaa", 10);
  58. Person p2("bbb", 20);
  59. Person p3("ccc", 30);
  60. Person p4("ddd", 40);
  61. Person pp("bbb", 20);//查找有无与此人相同的人
  62. //放入到容器中
  63. v.push_back(p1);
  64. v.push_back(p2);
  65. v.push_back(p3);
  66. v.push_back(p4);
  67. //查找年龄大于20的人
  68. vector<Person>::iterator pos = find_if(v.begin(), v.end(), Greater20());
  69. if (pos == v.end())
  70. {
  71. cout << "没有找到!" << endl;
  72. }
  73. else
  74. {
  75. cout << "找到此人 姓名:" << pos->m_Name << " 年龄:" << pos->m_Age << endl;
  76. }
  77. }
  78. int main()
  79. {
  80. test01();
  81. test02();
  82. system("pause");
  83. return 0;
  84. }

输出结果:

  1. 找到大于5的数字 为:6
  2. 找到此人 姓名:ccc 年龄:30
  3. 请按任意键继续. . .

2.2.3 adjacent_find

功能描述:查找相邻重复元素

函数原型:

  1. adjacent_find(iterator beg, iterator end);
  2. // 查找相邻重复元素,返回相邻元素的第一个位置的选代器
  3. // beg 开始迭代器
  4. // end 结束迭代器
  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. //常用查找算法 adjacent_find
  6. void test01()
  7. {
  8. vector<int>v;
  9. v.push_back(0);
  10. v.push_back(2);
  11. v.push_back(0);
  12. v.push_back(3);
  13. v.push_back(1);
  14. v.push_back(4);
  15. v.push_back(3);
  16. v.push_back(3);
  17. vector<int>::iterator pos = adjacent_find(v.begin(), v.end());
  18. if (pos == v.end())
  19. {
  20. cout << "没有找到相邻重复元素!" << endl;
  21. }
  22. else
  23. {
  24. cout << "找到相邻重复元素:" << *pos << endl;
  25. }
  26. }
  27. int main()
  28. {
  29. test01();
  30. system("pause");
  31. return 0;
  32. }

输出结果:

  1. 找到相邻重复元素:3
  2. 请按任意键继续. . .

2.2.4 binary_search

功能描述:查找指定元素是否存在  注意: 在无序序列中不可用

函数原型:

  1. bool binary_search(iterator beg, iterator end, value);
  2. // 查找指定的元素,查到返回true 否则false
  3. // 注意: 在无序序列中不可用
  4. // beg 开始迭代器
  5. // end 结束迭代器
  6. // value 查找的元素n
  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. //常用查找算法 binary_search
  6. void test01()
  7. {
  8. vector<int>v;
  9. for (int i = 0; i < 10; i++)
  10. {
  11. v.push_back(i);
  12. }
  13. //查找容器中是否有9 元素
  14. //注意: 在无序序列中不可用
  15. //如果是无序序列,结果未知
  16. //必须要有序
  17. bool ret = binary_search(v.begin(), v.end(), 9);
  18. if (ret)
  19. {
  20. cout << "找到了元素!" << endl;
  21. }
  22. else
  23. {
  24. cout << "未找到!" << endl;
  25. }
  26. }
  27. int main()
  28. {
  29. test01();
  30. system("pause");
  31. return 0;
  32. }

输出结果:

  1. 找到了元素!
  2. 请按任意键继续. . .

2.2.5 count

功能描述:统计元素个数

注意:统计自定义数据类型时,需要配合重载operator==

函数原型:

  1. count(iterator beg, iterator end, value);
  2. // 统计元素出现次数
  3. // beg 开始迭代器
  4. // end 结束迭代器
  5. // value 统计的元素
  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<string>
  5. #include<algorithm>
  6. //常用查找算法 count
  7. //1、统计内置数据类型
  8. void test01()
  9. {
  10. vector<int>v;
  11. v.push_back(10);
  12. v.push_back(40);
  13. v.push_back(30);
  14. v.push_back(40);
  15. v.push_back(20);
  16. v.push_back(40);
  17. int num = count(v.begin(), v.end(), 40);
  18. cout << "40元素个数为:" << num << endl;
  19. }
  20. //2、统计自定义数据类型
  21. class Person
  22. {
  23. public:
  24. Person(string name, int age)
  25. {
  26. this->m_Name = name;
  27. this->m_Age = age;
  28. }
  29. //需要加const,防止用户修改Person
  30. //否则会报错
  31. bool operator==(const Person& p)
  32. {
  33. if (this->m_Age == p.m_Age)
  34. {
  35. return true;
  36. }
  37. else
  38. {
  39. return false;
  40. }
  41. }
  42. string m_Name;
  43. int m_Age;
  44. };
  45. void test02()
  46. {
  47. vector<Person>v;
  48. Person p1("刘备", 35);
  49. Person p2("关羽", 35);
  50. Person p3("张飞", 35);
  51. Person p4("赵云", 30);
  52. Person p5("曹操", 40);
  53. //将人员插入到容器中
  54. v.push_back(p1);
  55. v.push_back(p2);
  56. v.push_back(p3);
  57. v.push_back(p4);
  58. v.push_back(p5);
  59. Person p("诸葛亮", 35);
  60. int num = count(v.begin(), v.end(), p);
  61. cout << "与诸葛亮同岁数的人员个数为:" << num << endl;
  62. }
  63. int main()
  64. {
  65. test01();
  66. test02();
  67. system("pause");
  68. return 0;
  69. }

输出结果:

  1. 40元素个数为:3
  2. 与诸葛亮同岁数的人员个数为:3
  3. 请按任意键继续. . .

2.2.6 count_if

功能描述:按条件统计元素个数

函数原型:

  1. count_if(iterator beg, iterator end, _pred);
  2. // 按条件统计元素出现次数
  3. // beg 开始迭代器
  4. // end 结束迭代器
  5. // _Pred 谓词
  1. #include <iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<string>
  5. #include<algorithm>
  6. //常用查找算法 count_if
  7. //1、统计内置数据类型
  8. class Greater20
  9. {
  10. public:
  11. bool operator()(int val)
  12. {
  13. return val > 20;
  14. }
  15. };
  16. void test01()
  17. {
  18. vector<int>v;
  19. v.push_back(10);
  20. v.push_back(40);
  21. v.push_back(30);
  22. v.push_back(20);
  23. v.push_back(40);
  24. v.push_back(20);
  25. int num = count_if(v.begin(), v.end(), Greater20());
  26. cout << "大于20的元素个数为:" << num << endl;
  27. }
  28. //2、统计自定义数据类型
  29. class Person
  30. {
  31. public:
  32. Person(string name, int age)
  33. {
  34. this->m_Name = name;
  35. this->m_Age = age;
  36. }
  37. //需要加const,防止用户修改Person
  38. //否则会报错
  39. bool operator==(const Person& p)
  40. {
  41. if (this->m_Age == p.m_Age)
  42. {
  43. return true;
  44. }
  45. else
  46. {
  47. return false;
  48. }
  49. }
  50. string m_Name;
  51. int m_Age;
  52. };
  53. class AgeGreater20
  54. {
  55. public:
  56. bool operator()(const Person& p)
  57. {
  58. return p.m_Age > 20;
  59. }
  60. };
  61. void test02()
  62. {
  63. vector<Person>v;
  64. Person p1("刘备", 35);
  65. Person p2("关羽", 35);
  66. Person p3("张飞", 35);
  67. Person p4("赵云", 40);
  68. Person p5("曹操", 20);
  69. //将人员插入到容器中
  70. v.push_back(p1);
  71. v.push_back(p2);
  72. v.push_back(p3);
  73. v.push_back(p4);
  74. v.push_back(p5);
  75. int num = count_if(v.begin(), v.end(), AgeGreater20());
  76. cout << "大于20岁的人员个数为:" << num << endl;
  77. }
  78. int main()
  79. {
  80. test01();
  81. test02();
  82. system("pause");
  83. return 0;
  84. }

输出结果:

  1. 大于20的元素个数为:3
  2. 大于20岁的人员个数为:4
  3. 请按任意键继续. . .
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/812855
推荐阅读
相关标签
  

闽ICP备14008679号