当前位置:   article > 正文

C++ 26 常用算法_c++算法

c++算法

目录

 

一、概述

1.1 常用遍历算法

1.1.1 算法简介

1.1.2 for_each遍历算法

1.1.3 transform遍历算法

1.2 常用查找算法

1.2.1 算法简介

1.2.2 find 查找算法

1.2.3 find_if 查找算法

1.2.4 adjacent_find 查找算法

1.2.5 binary_search 查找算法

1.2.6 count 查找算法

1.2.7 count_if 查找算法

1.3 常用排序算法

1.3.1 算法简介

1.3.2 sort排序算法

1.3.3 random_shuffle排序算法

1.3.4 merge排序算法

1.3.5 reverse排序算法

1.4 常用的拷贝和替换算法

1.4.1 算法简介

1.4.2 copy算法

1.4.3 replace算法

1.4.4 replace_if算法

1.4.5 swap算法

1.5 常用的算术生成算法

1.5.1 算法简介

1.5.2 accumulate生成算法

1.5.3 fill生成算法

1.6 常用集合算法

1.6.1 算法简介

1.6.2 set_intersection算法

1.6.3 set_union集合算法

1.6.4 set_difference集合算法


一、概述

① 算法主要是由头文件 #include<functional> //内建函数对象头文件, #include<numeric>, 

#include<algorithm>组成。

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

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

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

1.1 常用遍历算法

1.1.1 算法简介

for_each //遍历容器

② transform //搬运容器到另一个容器中

1.1.2 for_each遍历算法

① for_each在实际开发中是最常用遍历算法,需要熟练掌握。

② 函数原型:for_each(iterator beg, iterator end,  _func);

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. //普通函数
  6. void print01(int val)
  7. {
  8. cout << val << " ";
  9. }
  10. //仿函数
  11. class print02
  12. {
  13. public:
  14. void operator()(int val)
  15. {
  16. cout << val << " ";
  17. }
  18. };
  19. void test01()
  20. {
  21. vector<int>v;
  22. for (int i = 0; i < 10; i++)
  23. {
  24. v.push_back(i);
  25. }
  26. for_each(v.begin(), v.end(), print01()); //利用普通函数实现遍历操作,放入函数名即可
  27. cout << endl;
  28. for_each(v.begin(), v.end(), print02()); //仿函数,放入匿名函数对象即可
  29. cout << endl;
  30. }
  31. int main()
  32. {
  33. test01();
  34. system("pause");
  35. return 0;
  36. }
  37. 运行结果:
  38. 0 1 2 3 4 5 6 7 8 9
  39. 0 1 2 3 4 5 6 7 8 9
  40. 请按任意键继续. . .

1.1.3 transform遍历算法

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

② 函数原型:transform(iterator beg1, iterator end1, iterator beg2, _func);

  1. beg1 源容器开始迭代器
  2. end1 源容器结束迭代器
  3. beg2 目标容器开始迭代器
  4. _func 函数或者函数对象

③ 搬运的目标容器必须要提前开辟空间,否则无法正常搬运。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. //常用遍历算法 transform
  6. class Transform
  7. {
  8. public:
  9. int operator()(int v)
  10. {
  11. return v;
  12. }
  13. };
  14. class MyPrint
  15. {
  16. public:
  17. void operator()(int val)
  18. {
  19. cout << val+100 << " ";
  20. }
  21. };
  22. void test01()
  23. {
  24. vector<int>v;
  25. for (int i = 0; i < 10; i++)
  26. {
  27. v.push_back(i);
  28. }
  29. vector<int>vTarget; //目标容器
  30. vTarget.resize(v.size()); //目标容器,需要提前开辟空间
  31. transform(v.begin(), v.end(), vTarget.begin(), Transform());
  32. for_each(vTarget.begin(), vTarget.end(), MyPrint());
  33. cout << endl;
  34. }
  35. int main()
  36. {
  37. test01();
  38. system("pause");
  39. return 0;
  40. }
  41. 运行结果:
  42. 100 101 102 103 104 105 106 107 108 109
  43. 请按任意键继续. . .

1.2 常用查找算法

1.2.1 算法简介

① find //查找元素

② find_if //按条件查找元素

③ adjacent_find //查找相邻重复元素

binary_search //二分查找法

⑤ cout //统计元素个数

⑥ count_if //按条件统计元素个数

1.2.2 find 查找算法

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

② 函数原型:find(operator beg,iterator end, value);

  1. 按值查找元素,找到返回指定位置迭代器,找不到返回结束位置迭代器位置。
  2. beg 开始迭代器
  3. end 结束迭代器
  4. value 查找的元素

③ 利用find可以坐在容器这种找指定的元素,返回值是迭代器。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. //查找 内置数据类型
  7. void test01()
  8. {
  9. vector<int>v;
  10. for (int i = 0; i < 10; i++)
  11. {
  12. v.push_back(i);
  13. }
  14. //查找 容器中 是否有 5 这个元素
  15. vector<int>::iterator it = find(v.begin(), v.end(), 5);
  16. if (it == v.end())
  17. {
  18. cout << "没有找到!" << endl;
  19. }
  20. else
  21. {
  22. cout << "找到:" << *it << 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. //放入到容器中
  58. v.push_back(p1);
  59. v.push_back(p2);
  60. v.push_back(p3);
  61. v.push_back(p4);
  62. Person pp("bbb",20);
  63. vector<Person>::iterator it = find(v.begin(), v.end(), pp); //find找里面有没有pp这个对象
  64. if (it == v.end())
  65. {
  66. cout << "没有找到" << endl;
  67. }
  68. else
  69. {
  70. cout << "找到元素姓名:" << it->m_Name << " 年龄:" << it->m_Age <<endl;
  71. }
  72. }
  73. int main()
  74. {
  75. test01();
  76. test02();
  77. system("pause");
  78. return 0;
  79. }
  80. 运行结果:
  81. 找到:5
  82. 找到元素姓名:bbb 年龄:20
  83. 请按任意键继续. . .

1.2.3 find_if 查找算法

① 功能描述:按条件查找

② 函数原型:find_if(iterator beg, iterator end, _Pred);

  1. 按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置。
  2. beg 开始迭代器
  3. end 结束迭代器
  4. _Pred 函数或者谓词 (返回bool类型的仿函数)
  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. //1、查找 内置数据类型
  7. class GreaterFive
  8. {
  9. public:
  10. bool operator()(int val)
  11. {
  12. return val > 5; //当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. vector<int>::iterator it = find_if(v.begin(), v.end(), GreaterFive());
  23. if (it == v.end())
  24. {
  25. cout << "没有找到";
  26. }
  27. else
  28. {
  29. cout << "找到大于5的数字为:" << *it << endl;
  30. }
  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. void test02()
  53. {
  54. vector<Person>v;
  55. //创建数据
  56. Person p1("aaa", 10);
  57. Person p2("bbb", 20);
  58. Person p3("ccc", 30);
  59. Person p4("ddd", 40);
  60. v.push_back(p1);
  61. v.push_back(p2);
  62. v.push_back(p3);
  63. v.push_back(p4);
  64. //找年龄大于20的人
  65. vector<Person>::iterator it = find_if(v.begin(), v.end(), Greater20());
  66. if (it == v.end())
  67. {
  68. cout << "没有找到" << endl;
  69. }
  70. else
  71. {
  72. cout << "找到姓名:" << it->m_Name << " 年龄:" << it->m_Age << endl;
  73. }
  74. }
  75. int main() {
  76. test01();
  77. test02();
  78. system("pause");
  79. return 0;
  80. }
  81. 运行结果:
  82. 找到大于5的数字为:6
  83. 找到姓名:ccc 年龄:30
  84. 请按任意键继续. . .

1.2.4 adjacent_find 查找算法

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

② 函数原型:adjacent_find(iterator beg, iterator end);

  1. 查找相邻重复元素,返回相邻元素的第一个位置的迭代器
  2. beg 开始迭代器
  3. end 结束迭代器

③ 面试题中如果出现查找相邻重复元素,记得用STL中的adjacent_find算法

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  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); //相邻,3重复,adjacent_find()返回的是这个,第一个元素的迭代器
  16. v.push_back(3);
  17. vector<int>::iterator pos = adjacent_find(v.begin(), v.end());
  18. if (pos == v.end())
  19. {
  20. cout << "没有找到相邻重复元素";
  21. }
  22. else
  23. {
  24. cout << "找到相邻重复元素:" << *pos << endl;
  25. }
  26. }
  27. int main()
  28. {
  29. test01();
  30. system("pause");
  31. return 0;
  32. }
  33. 运行结果:
  34. 找到相邻重复元素:3
  35. 请按任意键继续. . .

1.2.5 binary_search 查找算法

① 功能描述:查找指定元素是否存在。

② 函数原型:bool binary_search(iterator beg, iterator end, value);

  1. 查找指定的元素,查到返回true,否则false
  2. 注意:在无序序列中不可用
  3. --beg 开始迭代器
  4. --end 结束迭代器
  5. --value 查找迭代器

③ 二分法查找效率很高,值得注意的是查找的容器中元素必须是有序序列

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. //常用查找算法 binary_search
  7. void test01()
  8. {
  9. vector<int>v;
  10. for (int i = 0; i < 10; i++)
  11. {
  12. v.push_back(i);
  13. }
  14. //查找容器中是否有9元素
  15. //注意:容器必须是有序的序列,上面的vector是一个升序的序列,如果vector是一个无序的序列,那么有可能找到,有可能找不到
  16. bool ret = binary_search(v.begin(), v.end(),9);
  17. if (ret)
  18. {
  19. cout << "找到元素" << endl;
  20. }
  21. else
  22. {
  23. cout << "没有找到元素:" << endl;
  24. }
  25. vector<int>v2;
  26. for (int i = 0; i < 10; i++)
  27. {
  28. v2.push_back(i);
  29. }
  30. v2.push_back(2); //又插入了一个元素,vector变成无序序列了,那么结果就是未知的了
  31. bool ret2 = binary_search(v2.begin(), v2.end(), 9);
  32. if (ret2)
  33. {
  34. cout << "找到元素";
  35. }
  36. else
  37. {
  38. cout << "没有找到元素" << endl;
  39. }
  40. }
  41. int main() {
  42. test01();
  43. system("pause");
  44. return 0;
  45. }
  46. 运行结果:
  47. 找到元素
  48. 没有找到元素
  49. 请按任意键继续. . .

1.2.6 count 查找算法

① 功能描述:统计元素个数。

② 函数原型:count(iterator big, iterator end, value);

  1. 统计元素出现次数
  2. beg 开始迭代器
  3. end 结束迭代器
  4. value 统计的元素

③ 统计自定义数据类型时候,需要配合重载operator==

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. //1、统计内置数据类型
  7. void test01()
  8. {
  9. vector<int>v;
  10. v.push_back(10);
  11. v.push_back(40);
  12. v.push_back(30);
  13. v.push_back(40);
  14. v.push_back(20);
  15. v.push_back(40);
  16. int num = count(v.begin(), v.end(), 40);
  17. cout << "40的元素个数为:" << num << endl;
  18. }
  19. //2、统计自定义数据类型
  20. class Person
  21. {
  22. public:
  23. Person(string name, int age)
  24. {
  25. this->m_Name = name;
  26. this->m_Age = age;
  27. }
  28. // 重载==
  29. bool operator==(const Person& p)
  30. {
  31. if (this->m_Age == p.m_Age)
  32. {
  33. return true;
  34. }
  35. else
  36. {
  37. return false;
  38. }
  39. }
  40. string m_Name;
  41. int m_Age;
  42. };
  43. void test02()
  44. {
  45. vector<Person>v;
  46. Person p1("刘备", 35);
  47. Person p2("关羽", 35);
  48. Person p3("张飞", 35);
  49. Person p4("赵云", 30);
  50. Person p5("曹操", 40);
  51. //将人员插入到容器中
  52. v.push_back(p1);
  53. v.push_back(p2);
  54. v.push_back(p3);
  55. v.push_back(p4);
  56. v.push_back(p5);
  57. Person p("诸葛亮", 35);
  58. int num = count(v.begin(), v.end(), p);
  59. cout << "和诸葛亮同岁数的人有多少:" << num << endl;
  60. }
  61. int main()
  62. {
  63. test01();
  64. test02();
  65. system("pause");
  66. return 0;
  67. }
  68. 运行结果:
  69. 40的元素个数为:3
  70. 和诸葛亮同岁数的人有多少:3
  71. 请按任意键继续. . .

1.2.7 count_if 查找算法

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

② 函数原型:count_if(iterator beg, iterator end, _Pred)

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

1.3 常用排序算法

1.3.1 算法简介

① sort //对容器内元素进行排序

② random_shuffle //洗牌 指定范围内的元素随机调整次序

③ merge //容器元素合并,并存储到另一容器中

④ reverse //反转指定范围的元素

1.3.2 sort排序算法

① 功能描述:对容器内元素进行排序

② 函数原型:sort(iterator beg, iterator end, _Pred);

  1. 按值查找元素,找到返回指定位置迭代器,找不到返回结束位置迭代器位置
  2. beg 开始迭代器
  3. end 结束迭代器
  4. _Pred 谓词

③ sort属于开发中最常用的算法之一,需熟练掌握

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. #include<functional>
  7. //1、统计内置数据类型
  8. //普通函数
  9. void myPrint(int val)
  10. {
  11. cout << val << " ";
  12. }
  13. void test01()
  14. {
  15. vector<int>v;
  16. v.push_back(10);
  17. v.push_back(30);
  18. v.push_back(50);
  19. v.push_back(20);
  20. v.push_back(40);
  21. //利用sort升序
  22. sort(v.begin(), v.end()); //默认是升序排列
  23. for_each(v.begin(), v.end(), myPrint);
  24. cout << endl;
  25. //改变为降序
  26. sort(v.begin(), v.end(), greater<int>());
  27. for_each(v.begin(), v.end(), myPrint);
  28. cout << endl;
  29. }
  30. //2、统计自定义数据类型
  31. class Person
  32. {
  33. public:
  34. Person(string name, int age)
  35. {
  36. this->m_Name = name;
  37. this->m_Age = age;
  38. }
  39. string m_Name;
  40. int m_Age;
  41. };
  42. class AgeGreater20
  43. {
  44. public:
  45. bool operator()(const Person &p)
  46. {
  47. return p.m_Age > 20;
  48. }
  49. };
  50. void test02()
  51. {
  52. vector<Person>v;
  53. Person p1("刘备", 35);
  54. Person p2("关羽", 35);
  55. Person p3("张飞", 35);
  56. Person p4("赵云", 40);
  57. Person p5("曹操", 20);
  58. //将人员插入到容器中
  59. v.push_back(p1);
  60. v.push_back(p2);
  61. v.push_back(p3);
  62. v.push_back(p4);
  63. v.push_back(p5);
  64. //统计 大于20岁人员个数
  65. int num = count_if(v.begin(), v.end(), AgeGreater20());
  66. cout << "大于20岁的人员个数为:" << num << endl;
  67. }
  68. int main() {
  69. test01();
  70. //test02();
  71. system("pause");
  72. return 0;
  73. }
  74. 运行结果:
  75. 10 20 30 40 50
  76. 50 40 30 20 10
  77. 请按任意键继续. . .

1.3.3 random_shuffle排序算法

① 功能描述:洗牌算法指定范围内的元素随机调整次序。

② 函数原型:random_shuffle(iterator beg, iterator end);

  1. 指定范围内的元素随机调整次序
  2. beg 开始迭代器
  3. end 结束迭代器

③ random_shuffle洗牌算法比较实用,使用时记得加随机数种子。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. #include<functional>
  7. #include<ctime>
  8. class myPrint
  9. {
  10. public:
  11. void operator()(int val)
  12. {
  13. cout << val << " ";
  14. }
  15. };
  16. void test01()
  17. {
  18. srand((unsigned int)time(NULL)); //生成一个随机数种子,利用时间生成,确保每次生成的随机数种子不同
  19. vector<int>v;
  20. for (int i = 0; i < 10; i++)
  21. {
  22. v.push_back(i);
  23. }
  24. //利用洗牌 算法 打乱顺序
  25. random_shuffle(v.begin(), v.end());
  26. for_each(v.begin(), v.end(),myPrint());
  27. cout << endl;
  28. }
  29. int main()
  30. {
  31. test01();
  32. system("pause");
  33. return 0;
  34. }
  35. 运行结果:
  36. 1 5 7 9 4 2 6 8 3 0
  37. 请按任意键继续. . .

1.3.4 merge排序算法

① 功能描述:两个容器元素合并,并存储到另一容器中。

② 函数原型:merge(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest);

  1. 容器元素合并,并存储到另一容器中
  2. 注意:两个容器必须是有序的
  3. beg1 容器1开始迭代器
  4. end2 容器1结束迭代器
  5. beg2 容器2开始迭代器
  6. end2 容器2结束迭代器
  7. dest 目标容器开始迭代器

③ merge合并后的容器也是有序的

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. #include<functional>
  7. #include<ctime>
  8. void myPrint(int val)
  9. {
  10. cout << val << " ";
  11. }
  12. void test01()
  13. {
  14. vector<int>v1;
  15. vector<int>v2;
  16. for (int i = 0; i < 10; i++)
  17. {
  18. v1.push_back(i);
  19. v2.push_back(i + 1);
  20. }
  21. //目标容器
  22. vector<int>vTarget;
  23. vTarget.resize(v1.size() + v2.size()); //提前给目标容器分配空间
  24. merge(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());
  25. for_each(vTarget.begin(), vTarget.end(), myPrint);
  26. cout << endl;
  27. }
  28. int main()
  29. {
  30. test01();
  31. system("pause");
  32. return 0;
  33. }
  34. 运行结果:
  35. 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10
  36. 请按任意键继续. . .

1.3.5 reverse排序算法

① 功能描述:将容器内元素进行反转

② 函数原型:reverse(iterator beg, iterator end);

  1. 反转指定范围的元素
  2. beg 开始迭代器
  3. end 结束迭代器

③ reverse反转区间内的元素,面试题可能涉及到

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. #include<functional>
  7. #include<ctime>
  8. void myPrint(int val)
  9. {
  10. cout << val << " ";
  11. }
  12. void test01()
  13. {
  14. vector<int>v1;
  15. v1.push_back(10);
  16. v1.push_back(30);
  17. v1.push_back(50);
  18. v1.push_back(20);
  19. v1.push_back(40);
  20. cout << "反转前:" << endl;
  21. for_each(v1.begin(), v1.end(), myPrint);
  22. cout << endl;
  23. cout << "反转后:" << endl;
  24. reverse(v1.begin(), v1.end());
  25. for_each(v1.begin(), v1.end(), myPrint);
  26. cout << endl;
  27. }
  28. int main()
  29. {
  30. test01();
  31. system("pause");
  32. return 0;
  33. }
  34. 运行结果:
  35. 反转前:
  36. 10 30 50 20 40
  37. 反转后:
  38. 40 20 50 30 10
  39. 请按任意键继续. . .

1.4 常用的拷贝和替换算法

1.4.1 算法简介

① 算法简介:

  1. copy //容器内指定范围的元素拷贝到另一容器中
  2. replace //将容器内指定范围的旧元素修改为新元素
  3. replace_if //容器内指定范围满足条件的元素替换为新元素
  4. swap //互换两个容器的元素

1.4.2 copy算法

① 功能描述:容器内指定范围的元素拷贝到另一容器中。

② 函数原型:copy(iterator beg, iterator end, iterator dest);

  1. 按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置
  2. beg 开始迭代器
  3. end 结束迭代器
  4. dest 目标起始迭代器

③ 利用copy算法在拷贝时,目标容器记得提前开辟空间。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. #include<functional>
  7. void myPrint(int val)
  8. {
  9. cout << val << " ";
  10. }
  11. void test01()
  12. {
  13. vector<int>v1;
  14. for (int i = 0; i < 10; i++)
  15. {
  16. v1.push_back(i);
  17. }
  18. vector<int>v2;
  19. v2.resize(v1.size());
  20. copy(v1.begin(),v1.end(),v2.begin());
  21. for_each(v2.begin(), v2.end(), myPrint);
  22. cout << endl;
  23. }
  24. int main() {
  25. test01();
  26. system("pause");
  27. return 0;
  28. }
  29. 运行结果:
  30. 0 1 2 3 4 5 6 7 8 9
  31. 请按任意键继续. . .

1.4.3 replace算法

① 功能描述:将容器内指定范围的旧元素修改为新元素。

② 函数原型:repalece(iterator beg, iterator end, oldvalue, newvalue);

  1. 将区间内旧元素替换成新元素
  2. beg 开始迭代器
  3. end 结束迭代器
  4. oldvalue 旧元素
  5. newvalue 新元素

③ replace会替换区间内满足条件的元素。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. #include<functional>
  7. class MyPrint
  8. {
  9. public:
  10. void operator()(int val)
  11. {
  12. cout << val << " ";
  13. }
  14. };
  15. void test01()
  16. {
  17. vector<int>v1;
  18. for (int i = 0; i < 10; i++)
  19. {
  20. v1.push_back(i);
  21. }
  22. v1.push_back(20);
  23. v1.push_back(30);
  24. v1.push_back(50);
  25. v1.push_back(30);
  26. v1.push_back(40);
  27. v1.push_back(20);
  28. v1.push_back(10);
  29. v1.push_back(20);
  30. cout << "替换前:" << endl;
  31. for_each(v1.begin(), v1.end(), MyPrint());
  32. cout << endl;
  33. //将容器里面所有的20替换成2000
  34. replace(v1.begin(), v1.end(), 20, 20000);
  35. cout << "替换后:" << endl;
  36. for_each(v1.begin(), v1.end(), MyPrint());
  37. cout << endl;
  38. }
  39. int main()
  40. {
  41. test01();
  42. system("pause");
  43. return 0;
  44. }
  45. 运行结果:
  46. 替换前:
  47. 0 1 2 3 4 5 6 7 8 9 20 30 50 30 40 20 10 20
  48. 替换后:
  49. 0 1 2 3 4 5 6 7 8 9 20000 30 50 30 40 20000 10 20000
  50. 请按任意键继续. . .

1.4.4 replace_if算法

① 功能描述:将区间内满足条件的元素,替换成指定元素。

② 函数原型:replace_if(iterator beg, iterator end, _pred, newvalue);

  1. 按条件替换元素,满足条件的替换成指定元素
  2. beg 开始迭代器
  3. end 结束迭代器
  4. _pred 谓词
  5. newvalue 替换的新元素

③ replace_if 按条件查找,可以利用仿函数灵活筛选满足的条件

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. #include<functional>
  7. class MyPrint
  8. {
  9. public:
  10. void operator()(int val)
  11. {
  12. cout << val << " ";
  13. }
  14. };
  15. class Greater30
  16. {
  17. public:
  18. bool operator()(int val)
  19. {
  20. return val >= 30;
  21. }
  22. };
  23. void test01()
  24. {
  25. vector<int>v1;
  26. v1.push_back(20);
  27. v1.push_back(30);
  28. v1.push_back(50);
  29. v1.push_back(30);
  30. v1.push_back(40);
  31. v1.push_back(20);
  32. v1.push_back(10);
  33. v1.push_back(20);
  34. cout << "替换前:" << endl;
  35. for_each(v1.begin(), v1.end(), MyPrint());
  36. cout << endl;
  37. //将容器里面大于等于30的 替换成30000
  38. replace_if(v1.begin(), v1.end(), Greater30(),30000);
  39. cout << "替换后:" << endl;
  40. for_each(v1.begin(), v1.end(), MyPrint());
  41. cout << endl;
  42. }
  43. int main()
  44. {
  45. test01();
  46. system("pause");
  47. return 0;
  48. }
  49. 运行结果:
  50. 替换前:
  51. 20 30 50 30 40 20 10 20
  52. 替换后:
  53. 20 30000 30000 30000 30000 20 10 20
  54. 请按任意键继续. . .

1.4.5 swap算法

① 功能描述:互换两个容器的元素。

② 函数原型:swap(container c1, container c2);

  1. 互换两个容器的元素
  2. c1容器1
  3. c2容器2

③ swap交换容器时,注意交换的容器要同种类型。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<algorithm>
  5. #include<string>
  6. #include<functional>
  7. class MyPrint
  8. {
  9. public:
  10. void operator()(int val)
  11. {
  12. cout << val << " ";
  13. }
  14. };
  15. class Greater30
  16. {
  17. public:
  18. bool operator()(int val)
  19. {
  20. return val >= 30;
  21. }
  22. };
  23. void test01()
  24. {
  25. vector<int>v1;
  26. vector<int>v2;
  27. for (int i = 0; i < 10; i++)
  28. {
  29. v1.push_back(i);
  30. v2.push_back(i + 100);
  31. }
  32. cout << "交换前:" << endl;
  33. for_each(v1.begin(), v1.end(), MyPrint());
  34. cout << endl;
  35. for_each(v2.begin(), v2.end(), MyPrint());
  36. cout << endl;
  37. swap(v1,v2);
  38. cout << "交换后:" << endl;
  39. for_each(v1.begin(), v1.end(), MyPrint());
  40. cout << endl;
  41. for_each(v2.begin(), v2.end(), MyPrint());
  42. cout << endl;
  43. }
  44. int main()
  45. {
  46. test01();
  47. system("pause");
  48. return 0;
  49. }
  50. 运行结果:
  51. 交换前:
  52. 0 1 2 3 4 5 6 7 8 9
  53. 100 101 102 103 104 105 106 107 108 109
  54. 交换后:
  55. 100 101 102 103 104 105 106 107 108 109
  56. 0 1 2 3 4 5 6 7 8 9
  57. 请按任意键继续. . .

1.5 常用的算术生成算法

1.5.1 算法简介

① 算术生成算法属于小型算法,使用时包含的头文件为 #include <numeric>

② 算法简介:

  1. accumulate //计算容器元素累积总和
  2. fill //向容器中添加元素

1.5.2 accumulate生成算法

① 计算区间内 容器元素累加总和。

② 函数原型:accumulate(iterator beg, iterator end, value);

  1. 计算容器元素累加总和
  2. beg 开始迭代器
  3. end 结束迭代器
  4. value 起始值

③ accumulate使用时,头文件注意是numeric,这个算法很实用。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<numeric>
  5. void test01()
  6. {
  7. vector<int>v1;
  8. for (int i = 0; i <= 100; i++)
  9. {
  10. v1.push_back(i);
  11. }
  12. int total1 = accumulate(v1.begin(), v1.end(), 0); //起始累加值为0
  13. int total2 = accumulate(v1.begin(), v1.end(), 10000); //5050加上10000
  14. cout << "total1 = " << total1 << endl;
  15. cout << "total2 = " << total2 << endl;
  16. }
  17. int main()
  18. {
  19. test01();
  20. system("pause");
  21. return 0;
  22. }
  23. 运行结果:
  24. total1 = 5050
  25. total2 = 15050
  26. 请按任意键继续. . .

1.5.3 fill生成算法

① 功能描述:向容器中填充指定的元素。

② 函数原型:fill(iterator beg, iterator end, value);

  1. 向容器中填充元素
  2. beg 开始迭代器
  3. end 结束迭代器
  4. value 填充的值

③ 利用fill可以将容器区间内元素填充为指定值。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<numeric>
  5. #include<algorithm>
  6. void myPrint(int val)
  7. {
  8. cout << val << " ";
  9. }
  10. void test01()
  11. {
  12. vector<int>v1;
  13. v1.resize(10);
  14. for_each(v1.begin(), v1.end(), myPrint);
  15. cout << endl;
  16. //后期重新填充
  17. fill(v1.begin(), v1.end(), 100);
  18. for_each(v1.begin(), v1.end(), myPrint);
  19. cout << endl;
  20. }
  21. int main()
  22. {
  23. test01();
  24. system("pause");
  25. return 0;
  26. }
  27. 运行结果:
  28. 0 0 0 0 0 0 0 0 0 0
  29. 100 100 100 100 100 100 100 100 100 100
  30. 请按任意键继续. . .

1.6 常用集合算法

1.6.1 算法简介

① set_itersection //求两个容器的交集

② set_union //求两个容器的并集

③ set_difference // 求两个容器的差集

1.6.2 set_intersection算法

① 功能描述:求两个容器的交集。

② 函数原型:set_intersection(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest);

  1. 求两个集合的交集
  2. 注意:两个集合必须是有序序列
  3. beg1 容器1 开始迭代器
  4. end1 容器1 结束迭代器
  5. beg2 容器2 开始迭代器
  6. end2 容器2 结束迭代器
  7. dest 目标容器开始迭代器

③ 求交集的两个集合必须都是有序序列。

④ 目标容器开辟空间需要从两个容器中取小值

⑤ set_intersection返回值是交集中最后一个元素的位置

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<numeric>
  5. #include<algorithm>
  6. void myPrint(int val)
  7. {
  8. cout << val << " ";
  9. }
  10. void test01()
  11. {
  12. vector<int>v1;
  13. vector<int>v2;
  14. for (int i = 0; i < 10; i++)
  15. {
  16. v1.push_back(i); //0~9
  17. v2.push_back(i + 5); //5~14
  18. }
  19. vector<int>vTarget;
  20. //目标容器需要提前开辟空间
  21. //最特殊情况 大容器包含小容器 开辟空间 取小容器的size即可
  22. vTarget.resize(min(v1.size(), v2.size()));
  23. //获取交集
  24. vector<int>::iterator itEnd = set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());
  25. for_each(vTarget.begin(), vTarget.end(), myPrint); //取交集的元素少于开辟的容量,空的部分用0补充了
  26. cout << endl;
  27. for_each(vTarget.begin(), itEnd, myPrint); //itEnd为取交集的最后一个元素的迭代器进行返回
  28. cout << endl;
  29. }
  30. int main() {
  31. test01();
  32. system("pause");
  33. return 0;
  34. }
  35. 运行结果:
  36. 5 6 7 8 9 0 0 0 0 0
  37. 5 6 7 8 9
  38. 请按任意键继续. . .

1.6.3 set_union集合算法

① 功能描述:求两个集合的并集。

② 函数原型:set_union(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest);

  1. 求两个集合的并集。
  2. 注意:两个集合必须是有序序列。
  3. beg1 容器1 开始迭代器
  4. end1 容器1 结束迭代器
  5. beg2 容器2 开始迭代器
  6. end2 容器2 结束迭代器
  7. dest 目标容器开始迭代器

③ 求并集的两个集合必须得是有序序列。

④ 目标容器开辟空间需要两个容器相加。

⑤ set_union返回值是并集中最后一个元素的位置。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<numeric>
  5. #include<algorithm>
  6. void myPrint(int val)
  7. {
  8. cout << val << " ";
  9. }
  10. void test01()
  11. {
  12. vector<int>v1;
  13. vector<int>v2;
  14. for (int i = 0; i < 10; i++)
  15. {
  16. v1.push_back(i); //0~9
  17. v2.push_back(i + 5); //5~14
  18. }
  19. vector<int>vTarget;
  20. //目标容器需要提前开辟空间
  21. //最特殊情况 两个容器没有交集,并集就是两个容器size相加
  22. vTarget.resize(v1.size()+v2.size());
  23. //获取交集
  24. vector<int>::iterator itEnd = set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());
  25. for_each(vTarget.begin(), vTarget.end(), myPrint); //用最特殊的情况开辟的内存,由于一共有20个数,开辟了20个内存,并集后多余的位置为0
  26. cout << endl;
  27. for_each(vTarget.begin(), itEnd, myPrint); //itEnd为取并集后返回的最后一个元素的迭代器进行返回
  28. cout << endl;
  29. }
  30. int main()
  31. {
  32. test01();
  33. system("pause");
  34. return 0;
  35. }
  36. 运行结果:
  37. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 0 0 0 0 0
  38. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
  39. 请按任意键继续. . .

1.6.4 set_difference集合算法

① 功能描述:求两个集合的差集

② 函数原型:set_difference(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest);

  1. 求两个集合的差集
  2. 注意:两个集合必须是有序序列
  3. beg1 容器1 开始迭代器
  4. end1 容器1 结束迭代器
  5. beg2 容器2 开始迭代器
  6. end2 容器2 结束迭代器
  7. dest 目标容器开始迭代器

③ 当集合前后顺序不同时,集合的差集不一样,如下图所示,V1与V2的差集、V2与V1的差集,是不一样的。

 

④ 求差集的两个集合必须是有序序列。

⑤ 目标容器的开辟空间需要从两个容器取较大值。

⑥ set_difference返回值是差集中最后一个元素的位置。

  1. #include<iostream>
  2. using namespace std;
  3. #include<vector>
  4. #include<numeric>
  5. #include<algorithm>
  6. void myPrint(int val)
  7. {
  8. cout << val << " ";
  9. }
  10. void test01()
  11. {
  12. vector<int>v1;
  13. vector<int>v2;
  14. for (int i = 0; i < 10; i++)
  15. {
  16. v1.push_back(i); //0~9
  17. v2.push_back(i + 5); //5~14
  18. }
  19. vector<int>vTarget;
  20. //目标容器需要提前开辟空间
  21. //最特殊情况 两个容器没有交集,取两个容器中大的size作为目标容器开辟空间
  22. vTarget.resize(max(v1.size(),v2.size()));
  23. cout << "v1和v2的差集为:" << endl;
  24. vector<int>::iterator itEnd = set_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());
  25. for_each(vTarget.begin(), vTarget.end(), myPrint);
  26. cout << endl;
  27. for_each(vTarget.begin(), itEnd, myPrint);
  28. cout << endl;
  29. cout << "v2和v1的差集为:" << endl;
  30. itEnd = set_difference(v2.begin(), v2.end(), v1.begin(), v1.end(), vTarget.begin());
  31. for_each(vTarget.begin(), vTarget.end(), myPrint);
  32. cout << endl;
  33. for_each(vTarget.begin(), itEnd, myPrint);
  34. cout << endl;
  35. }
  36. int main()
  37. {
  38. test01();
  39. system("pause");
  40. return 0;
  41. }
  42. 运行结果:
  43. v1和v2的差集为:
  44. 0 1 2 3 4 0 0 0 0 0
  45. 0 1 2 3 4
  46. v2和v1的差集为:
  47. 10 11 12 13 14 0 0 0 0 0
  48. 10 11 12 13 14
  49. 请按任意键继续. . .

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/920656
推荐阅读
相关标签
  

闽ICP备14008679号