C++ STL

1、string 容器

1.1 string基本概念

本质:

  • string是C++风格的字符串,而string本质上是一个类。stringchar * 区别:
  • char * 是一个指针 ,string是一个类,类内部封装了char *,管理这个字符串,是一个char 型的容器。 -string管理char所分配的内存,不用担心复制越界和取值越界等,由类内部进行负责。

    1.2 string构造函数

    构造函数原型:

    | 函数原型 | 功能 | | —- | —- | | string(); | 创建一个空的字符串。 | | string(const char* s); | 使用字符串s初始化。 | | string(const string& str); | 使用一个string对象初始化另一个string对象。 | | string(int n, char c); | 使用n个字符c初始化。 |

示例:

  1. #include <iostream>;
  2. #include<string>;
  3. using namespace std;
  4. void test01() {
  5. <!-- -->
  6. string
  7. s1; //创建空字符串,调用无参构造函数
  8. const char *str = "Hello World";
  9. string s2(str);//把c_string转换成了string
  10. cout << s2 << endl;
  11. string s3(s2); //调用拷贝构造函数
  12. cout << s3 << endl;
  13. string s4(10, 'a');//使用10个字符‘a’初始化
  14. cout << s4 << endl;
  15. }
  16. int main() {
  17. <!-- -->
  18. test01();
  19. system("pause");
  20. return 0;
  21. }

1.3 string赋值操作

给string字符串进行赋值的函数原型:

函数原型 功能
string& operator=(const char* s); char*类型字符串赋值给当前的字符串。
string& operator=(const string &s); 把字符串s赋给当前的字符串。
string& operator=(char c); 字符赋值给当前的字符串。
string& assign(const char *s); 把字符串s赋给当前的字符串。
string& assign(const char *s, int n); 把字符串s的前n个字符赋给当前的字符串。
string& assign(const string &s); 把字符串s赋给当前字符串。
string& assign(int n, char c); 用n个字符c赋给当前字符串。

示例:

  1. #include <iostream>;
  2. #include<string>;
  3. using namespace std;
  4. void test01() {
  5. <!-- -->
  6. string
  7. str1;
  8. str1 = "Hello world";
  9. string str2;
  10. str2 = str1;// 把字符串s赋给当前的字符串
  11. string str3;
  12. str3 = 'a';//字符赋值给当前的字符串
  13. string str4;
  14. str4.assign("Hello C++");// 把字符串s赋给当前的字符串
  15. string str5;
  16. str5.assign("Hello C++", 4);//把字符串s的前n个字符赋给当前的字符串
  17. string str6;
  18. str6.assign(str5);//把字符串s赋给当前字符串
  19. string str7;
  20. str7.assign(10, 'w');//用n个字符c赋给当前字符串
  21. cout << str1 << endl;
  22. cout << str2 << endl;
  23. cout << str3 << endl;
  24. cout << str4 << endl;
  25. cout << str5 << endl;
  26. cout << str6 << endl;
  27. cout << str7 << endl;
  28. }
  29. int main() {
  30. <!-- -->
  31. test01();
  32. system("pause");
  33. return 0;
  34. }

1.4 string字符串拼接

实现字符串末尾拼接字符串的函数原型:

函数原型 功能
string& operator+=(const char* str); 重载+=操作符。
string& operator+=(const char c); 重载+=操作符。
string& operator+=(const string& str); 重载+=操作符。
string& append(const char *s); 把字符串s连接到当前字符串结尾。
string& append(const char *s, int n); 把字符串s的前n个字符连接到当前字符串结尾。
string& append(const string &s); 把字符串s连接到当前字符串结尾。
string& append(const string &s, int pos, int n); 字符串s中从pos开始的n个字符连接到字符串结尾。

示例:

  1. #include <iostream>;
  2. #include <string>;
  3. using namespace std;
  4. void test01() {
  5. <!-- -->
  6. string
  7. str1 = "我";
  8. str1 += "爱学习";//重载+=操作符
  9. cout << str1 << endl;
  10. str1 += ':';//重载+=操作符
  11. cout << str1 << endl;
  12. string str2 = " Effective C++";
  13. str1 += str2;// 重载+=操作符
  14. cout << str1 << endl;
  15. string str3 = "I";
  16. str3.append(" love ");// 把字符串s连接到当前字符串结尾
  17. cout << str3 << endl;
  18. str3.append("study abcde", 5);// 把字符串s的前n个字符连接到当前字符串结尾
  19. cout << str3 << endl;
  20. str3.append(str2);//把字符串s连接到当前字符串结尾
  21. cout << str3 << endl;
  22. str3.append(str2, 0, 10);// 字符串s中从pos开始的n个字符连接到字符串结尾
  23. cout << str3 << endl;
  24. }
  25. int main() {
  26. <!-- -->
  27. test01();
  28. system("pause");
  29. return 0;
  30. }

1.5 string查找和替换

查找指定字符串的函数原型:

函数模型 功能
int find(const string& str, int pos = 0) const; 查找str第一次出现位置,从pos开始查找。
int find(const char* s, int pos = 0) const; 查找s第一次出现位置,从pos开始查找。
int find(const char* s, int pos, int n) const; 从pos位置查找s的前n个字符第一次位置。
int find(const char c, int pos = 0) const; 查找字符c第一次出现位置。
int rfind(const string& str, int pos = npos) const; 查找str最后一次位置,从pos开始查找。
int rfind(const char* s, int pos = npos) const; 查找s最后一次出现位置,从pos开始查找。
int rfind(const char* s, int pos, int n) const; 从pos查找s的前n个字符最后一次位置。
int rfind(const char c, int pos = 0) const; 查找字符c最后一次出现位置。

示例:

  1. #include <iostream>;
  2. #include<string>;
  3. using namespace std;
  4. //查找
  5. void test01() {
  6. <!-- -->
  7. string
  8. str1 = "abcdefgde";
  9. int pos = str1.find("de");// 查找s第一次出现位置,从pos开始查找
  10. cout << pos << endl;
  11. pos = str1.rfind("de");//查找s最后一次出现位置,从pos开始查找
  12. cout << pos << endl;
  13. }
  14. int main() {
  15. <!-- -->
  16. test01();
  17. system("pause");
  18. return 0;
  19. }

在指定的位置替换字符串的函数模型:

函数原型 功能
string& replace(int pos, int n, const string& str); 替换从pos开始n个字符为字符串str。
string& replace(int pos, int n,const char* s); 替换从pos开始的n个字符为字符串s。

示例:

  1. #include <iostream>;
  2. #include<string>;
  3. using namespace std;
  4. //替换
  5. void test02() {
  6. <!-- -->
  7. string
  8. str1 = "abcdefg";
  9. str1.replace(1, 3, "1111");//替换从pos开始的n个字符为字符串s
  10. cout << str1 << endl;
  11. }
  12. int main() {
  13. <!-- -->
  14. test02();
  15. system("pause");
  16. return 0;
  17. }

1.6 string字符串比较

比较字符串大小的函数模型:

函数模型 功能
int compare(const string &s) const; 与字符串s比较。
int compare(const char *s) const; 与字符串s比较。

示例:

  1. #include <iostream>;
  2. #include<string>;
  3. using namespace std;
  4. void test01() {
  5. <!-- -->
  6. string
  7. str1 = "hello";
  8. string str2 = "hello";
  9. //与字符串s比较
  10. if (str1.compare(str2) == 0) cout << "=" << endl;
  11. else if (str1.compare(str2) >; 0) cout << ">;" << endl;
  12. else cout << "<" << endl;
  13. }
  14. int main() {
  15. <!-- -->
  16. test01();
  17. system("pause");
  18. return 0;
  19. }

1.7 string字符存取

string中单个字符存取的函数模型:

函数模型 功能
char& operator[ ] (int n); 通过[]方式取字符。
char& at(int n); 通过at方法获取字符。

需要注意的是,这两种访问方法是有区别的:

  • 下标操作符 [] 在使用时不检查索引的有效性,如果下标超出字符的长度范围,会示导致未定义行为。对于常量字符串,使用下标操作符时,字符串的最后字符(即 ‘\0’)是有效的。对应 string 类型对象(常量型)最后一个字符的下标是有效的,调用返回字符 ‘\0’。- 函数 at() 在使用时会检查下标是否有效。如果给定的下标超出字符的长度范围,系统会抛出 out_of_range 异常。

    示例:

    ```cpp

    include ;

    include;

using namespace std;

void test01() { string str = “hello”;

  1. for (int i = 0; i < str.size(); i++) {
  2. <!-- -->
  3. cout << str[i] << " ";// 通过[]方式取字符
  4. }
  5. cout << endl;
  6. for (int i = 0; i < str.size(); i++) {
  7. <!-- -->
  8. cout << str.at(i) << " ";// 通过at方法获取字符
  9. }
  10. cout << endl;
  11. str[0] = 'x';// 通过[]方式取字符
  12. cout << str << endl;
  13. char c = str.at(2); //通过at方法获取字符
  14. cout << c << endl;

}

int main() { test01(); system(“pause”); return 0; }

  1. <a name="apfq9"></a>
  2. ### 1.8 string插入和删除
  3. <a name="gp4Xl"></a>
  4. #### 对string字符串进行插入和删除字符操作的函数原型:
  5. | 函数模型 | 功能 |
  6. | --- | --- |
  7. | string& insert(int pos, const char* s); | 插入字符串。 |
  8. | string& insert(int pos, const string& str); | 插入字符串。 |
  9. | string& insert(int pos, int n, char c); | 在指定位置插入n个字符c。 |
  10. | string& erase(int pos, int n = npos); | 删除从Pos开始的n个字符。 |
  11. 注:插入和删除的起始下标都是从0开始。
  12. <a name="Kfn5D"></a>
  13. #### 示例:
  14. ```cpp
  15. #include <iostream>;
  16. #include<string>;
  17. using namespace std;
  18. void test01() {
  19. <!-- -->
  20. string
  21. str = "hello";
  22. str.insert(1, "111");//插入字符串
  23. cout << str << endl;
  24. str.erase(1, 3);// 删除从Pos开始的n个字符
  25. cout << str << endl;
  26. str.insert(1, 5, '1');// 插入从Pos开始的n个字符
  27. cout << str << endl;
  28. }
  29. int main() {
  30. <!-- -->
  31. test01();
  32. system("pause");
  33. return 0;
  34. }

1.9 string子串

从字符串中获取子串的函数模型:

函数模型 功能
string substr(int pos = 0, int n = npos) const; 返回由pos开始的n个字符组成的字符串。

示例:

  1. #include <iostream>;
  2. #include<string>;
  3. using namespace std;
  4. void test01() {
  5. <!-- -->
  6. string
  7. str = "hello";
  8. string subStr = str.substr(1, 3);//返回由pos开始的n个字符组成的字符串
  9. cout << subStr << endl;
  10. }
  11. //实用操作
  12. void test02() {
  13. <!-- -->
  14. string
  15. email = "hello@sina.com";
  16. //从邮件中 获取 用户名信息
  17. int pos = email.find('@');
  18. string user = email.substr(0, pos);//返回由pos开始的n个字符组成的字符串
  19. cout << user << endl;
  20. }
  21. int main() {
  22. <!-- -->
  23. test01();
  24. //test02();
  25. system("pause");
  26. return 0;
  27. }

2、vector 容器

2.1 vector基本概念

功能:

  • vector数据结构和数组非常相似,也称为单端数组。vector与普通数组区别:
  • 不同之处在于数组是静态空间,而vector可以动态扩展。动态扩展:
  • 并不是在原空间之后续接新空间,而是找更大的内存空间,然后将原数据拷贝新空间,释放原空间。

C   STL标准库总结 - 图1

  • vector容器的迭代器是支持随机访问的迭代器。

    2.2 vector构造函数

    创建vector容器的函数原型:

    | 函数模型 | 功能 | | —- | —- | | vector v; | 采用模板实现类实现,默认构造函数。 | | vector(v.begin(), v.end()); | 将v[begin(), end())区间中的元素拷贝给本身。 | | vector(n, elem); | 构造函数将n个elem拷贝给本身。 | | vector(const vector &vec); | 拷贝构造函数。 |

示例:

  1. #include <iostream>;
  2. #include <vector>;
  3. using namespace std;
  4. //vector 的构造函数
  5. void printVec(vector<int> &v) {
  6. <!-- -->
  7. for (vector<int>; ::iterator it = v.begin(); it != v.end();
  8. it++) {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. void test() {
  15. <!-- -->
  16. vector<int>;
  17. v1;//无参默认构造函数
  18. for (int i = 0; i < 10; i++) {
  19. <!-- -->
  20. v1.push_back(i);
  21. }
  22. printVec(v1);
  23. //通过区间来构造
  24. vector<int>;
  25. v2(v1.begin(), v1.end());//将v[begin(), end())区间中的元素拷贝给本身。
  26. printVec(v2);
  27. //n个elem 方式构造
  28. vector<int>;
  29. v3(10, 100);//构造函数将n个elem拷贝给本身。
  30. printVec(v3);//10个100
  31. //拷贝构造
  32. vector<int>;
  33. v4(v3);//拷贝构造函数。
  34. printVec(v4);
  35. }
  36. int main() {
  37. <!-- -->
  38. test();
  39. system("pause");
  40. return 0;
  41. }

2.3 vector赋值操作

vector容器进行赋值的函数原型:

函数原型 功能
vector& operator=(const vector &vec); 重载等号操作符。
assign(beg, end); 将[beg, end)区间中的数据拷贝赋值给本身。
assign(n, elem); 将n个elem拷贝赋值给本身。

示例:

  1. #include<iostream>;
  2. #include<vector>;
  3. using namespace std;
  4. void printVector(vector<int> &v) {
  5. <!-- -->
  6. for (vector<int>; ::iterator it = v.begin(); it != v.end();
  7. it++) {
  8. <!-- -->
  9. cout << *it << " ";
  10. }
  11. cout << endl;
  12. }
  13. void test01() {
  14. <!-- -->
  15. vector<int>;
  16. v1;
  17. for (int i = 0; i < 10; i++) {
  18. <!-- -->
  19. v1.push_back(i);
  20. }
  21. printVector(v1);
  22. vector<int>;
  23. v2;
  24. v2 = v1;//重载等号操作符
  25. printVector(v2);
  26. vector<int>;
  27. v3;
  28. v3.assign(v1.begin(), v1.end());// 将[beg, end)区间中的数据拷贝赋值给本身
  29. printVector(v3);
  30. vector<int>;
  31. v4;
  32. v4.assign(10, 100);//将n个elem拷贝赋值给本身
  33. printVector(v4);
  34. }
  35. int main() {
  36. <!-- -->
  37. test01();
  38. system("pause");
  39. return 0;
  40. }

2.4 vector容量和大小

对vector容器的容量和大小操作的函数模型:

函数原型 功能
empty(); 判断容器是否为空。
capacity(); 容器的容量。
size(); 返回容器中元素的个数。
resize(int num); 重新指定容器的长度为num,若容器变长,则以默认值填充新位置;如果容器变短,则末尾超出容器长度的元素被删除。
resize(int num, elem); 功能同上。

示例:

  1. #include<iostream>;
  2. #include<vector>;
  3. using namespace std;
  4. void printVector(vector<int> &v) {
  5. <!-- -->
  6. for (vector<int>; ::iterator it = v.begin(); it != v.end();
  7. it++) {
  8. <!-- -->
  9. cout << *it << " ";
  10. }
  11. cout << endl;
  12. }
  13. void test01() {
  14. <!-- -->
  15. vector<int>;
  16. v1;
  17. for (int i = 0; i < 10; i++) {
  18. <!-- -->
  19. v1.push_back(i);
  20. }
  21. printVector(v1);
  22. if (v1.empty()) {
  23. <!-- -->
  24. cout << "v1为空" << endl;
  25. } else {
  26. <!-- -->
  27. cout << "v1不为空" << endl;
  28. cout << "v1的容量 = " << v1.capacity() << endl;
  29. cout << "v1的大小 = " << v1.size() << endl;
  30. }
  31. //resize 重新指定大小 ,若指定的更大,默认用0填充新位置,可以利用重载版本替换默认填充
  32. v1.resize(15, 10);
  33. printVector(v1);
  34. //resize 重新指定大小 ,若指定的更小,超出部分元素被删除
  35. v1.resize(5);
  36. printVector(v1);
  37. }
  38. int main() {
  39. <!-- -->
  40. test01();
  41. system("pause");
  42. return 0;
  43. }

2.5 vector插入和删除

实现对vector容器进行插入、删除操作的函数原型:

函数原型 功能
push_back(ele); 尾部插入元素ele。
pop_back(); 删除最后一个元素。
insert(const_iterator pos, ele); 迭代器指向位置pos插入元素ele。
insert(const_iterator pos, int count,ele); 迭代器指向位置pos插入count个元素ele。
erase(const_iterator pos); 删除迭代器指向的元素。
erase(const_iterator start, const_iterator end); 删除迭代器从start到end之间的元素。
clear(); 删除容器中所有元素。

示例:

  1. #include<iostream>;
  2. #include<vector>;
  3. using namespace std;
  4. void printVector(vector<int> &v) {
  5. <!-- -->
  6. for (vector<int>; ::iterator it = v.begin(); it != v.end();
  7. it++) {
  8. <!-- -->
  9. cout << *it << " ";
  10. }
  11. cout << endl;
  12. }
  13. void test01() {
  14. <!-- -->
  15. vector<int>;
  16. v1;
  17. //尾插
  18. v1.push_back(10);//尾部插入元素ele
  19. v1.push_back(20);
  20. v1.push_back(30);
  21. v1.push_back(40);
  22. v1.push_back(50);
  23. printVector(v1);
  24. //尾删
  25. v1.pop_back();//删除最后一个元素
  26. printVector(v1);
  27. //插入
  28. v1.insert(v1.begin(), 100);//迭代器指向位置pos插入元素ele
  29. printVector(v1);
  30. v1.insert(v1.begin(), 2, 1000);//迭代器指向位置pos插入count个元素ele
  31. printVector(v1);
  32. //删除
  33. v1.erase(v1.begin());//删除迭代器指向的元素
  34. printVector(v1);
  35. //清空
  36. v1.erase(v1.begin(), v1.end());//删除迭代器从start到end之间的元素
  37. printVector(v1);
  38. v1.clear();//删除容器中所有元素
  39. printVector(v1);
  40. }
  41. int main() {
  42. <!-- -->
  43. test01();
  44. system("pause");
  45. return 0;
  46. }

2.6 vector数据存取

实现对vector中的数据的存取操作的函数模型:

函数模型 功能
at(int idx); 返回索引idx所指的数据。
operator[]; 返回索引idx所指的数据。
front(); 返回容器中第一个数据元素。
back(); 返回容器中最后一个数据元素。

示例:

  1. #include<iostream>;
  2. #include<vector>;
  3. using namespace std;
  4. void printVector(vector<int> &v) {
  5. <!-- -->
  6. for (vector<int>; ::iterator it = v.begin(); it != v.end();
  7. it++) {
  8. <!-- -->
  9. cout << *it << " ";
  10. }
  11. cout << endl;
  12. }
  13. void test01() {
  14. <!-- -->
  15. vector<int>;
  16. v1;
  17. for (int i = 0; i < 10; i++) {
  18. <!-- -->
  19. v1.push_back(i);
  20. }
  21. for (int i = 0; i < v1.size(); i++) {
  22. <!-- -->
  23. cout << v1[i] << " ";//返回索引idx所指的数据
  24. }
  25. cout << endl;
  26. for (int i = 0; i < v1.size(); i++) {
  27. <!-- -->
  28. cout << v1.at(i) << " ";//返回索引idx所指的数据
  29. }
  30. cout << endl;
  31. cout << "v1的第一个元素为: " << v1.front() << endl;//返回容器中第一个数据元素
  32. cout << "v1的最后一个元素为: " << v1.back() << endl;//返回容器中最后一个数据元素
  33. }
  34. int main() {
  35. <!-- -->
  36. test01();
  37. system("pause");
  38. return 0;
  39. }

2.7 vector互换容器

实现两个容器内元素进行互换的函数模型:

函数模型 功能
swap(vec); 将vec与本身的元素互换。

需要注意的是:v1.swap(v2),实质上只是交换vector中用于指示空间的三个指针而已,也就是空间的交换实际是指针指向的交换。

示例:

  1. #include<iostream>;
  2. #include<vector>;
  3. using namespace std;
  4. void printVector(vector<int> &v) {
  5. <!-- -->
  6. for (vector<int>; ::iterator it = v.begin(); it != v.end();
  7. it++) {
  8. <!-- -->
  9. cout << *it << " ";
  10. }
  11. cout << endl;
  12. }
  13. void test01() {
  14. <!-- -->
  15. vector<int>;
  16. v1;
  17. for (int i = 0; i < 10; i++) {
  18. <!-- -->
  19. v1.push_back(i);
  20. }
  21. printVector(v1);
  22. vector<int>;
  23. v2;
  24. for (int i = 10; i >; 0;
  25. i--){
  26. <!-- -->
  27. v2.push_back(i);
  28. }
  29. printVector(v2);
  30. //互换容器
  31. cout << "互换后" << endl;
  32. v1.swap(v2);// 将vec与本身的元素互换
  33. printVector(v1);
  34. printVector(v2);
  35. }
  36. int main() {
  37. <!-- -->
  38. test01();
  39. system("pause");
  40. return 0;
  41. }

2.8 vector预留空间

控制vector在动态扩展容量时的扩展大小的函数原型:

函数原型 功能
reserve(int len); 容器预留len个元素长度,预留位置不初始化,元素不可访问。

示例:

  1. #include <vector>;
  2. #include <iostream>;
  3. using namespace std;
  4. void test01() {
  5. <!-- -->
  6. vector<int>;
  7. v;
  8. //预留空间
  9. v.reserve(100000);
  10. //记录开辟内存的次数
  11. int num = 0;
  12. //记录开辟空间的初始位置
  13. int *p = NULL;
  14. for (int i = 0; i < 100000; i++) {
  15. <!-- -->
  16. v.push_back(i);
  17. /* 若此时指针p指向的位置不是容器的初始位置
  18. 说明已经开辟了新的空间
  19. 因为p->;原容器首位,后来重新开辟空间
  20. p->;原位置,但容器首位的地址改变了!
  21. */
  22. if (p != &amp;v[0]) {
  23. <!-- -->
  24. p = &amp;
  25. v[0];
  26. num++;
  27. }
  28. }
  29. cout << "num:" << num << endl;
  30. }
  31. int main() {
  32. <!-- -->
  33. test01();
  34. system("pause");
  35. return 0;
  36. }

3、deque 容器

3.1 deque容器基本概念

功能:

  • 双端数组,可以对头端进行插入删除操作

    deque与vector区别:

  • vector对于头部的插入删除效率低,数据量越大,效率越低 - deque相对而言,对头部的插入删除速度回比vector快 - vector访问元素时的速度会比deque快,这和两者内部实现有关

C   STL标准库总结 - 图2

deque内部工作原理:

deque内部有个中控器,维护每段缓冲区中的内容,缓冲区中存放真实数据中控器维护的是每个缓冲区的地址,使得使用deque时像一片连续的内存空间。
C   STL标准库总结 - 图3

  • deque容器的迭代器也是支持随机访问的。

    3.2 deque构造函数

    deque容器构造的函数原型:

    | 函数原型 | 功能 | | —- | —- | | deque deqT; | 默认构造形式。 | | deque(beg, end); | 构造函数将[beg, end)区间中的元素拷贝给本身。 | | deque(n, elem); | 构造函数将n个elem拷贝给本身。 | | deque(const deque &deq); | 拷贝构造函数。 |

示例:

  1. #include <deque>;
  2. #include <iostream>;
  3. using namespace std;
  4. void printDeque(const deque<int> &d) {
  5. <!-- -->
  6. for (deque<int>; ::const_iterator it = d.begin(); it != d.end();
  7. it++) {
  8. <!-- -->
  9. cout << *it << " ";
  10. }
  11. cout << endl;
  12. }
  13. //deque构造
  14. void test01() {
  15. <!-- -->
  16. deque<int>;
  17. d1; //无参构造函数
  18. for (int i = 0; i < 10; i++) {
  19. <!-- -->
  20. d1.push_back(i);
  21. }
  22. printDeque(d1);
  23. deque<int>;
  24. d2(d1.begin(), d1.end());//构造函数将[beg, end)区间中的元素拷贝给本身。
  25. printDeque(d2);
  26. deque<int>;
  27. d3(10, 100);//构造函数将n个elem拷贝给本身。
  28. printDeque(d3);
  29. deque<int>;
  30. d4 = d3;//拷贝构造函数。
  31. printDeque(d4);
  32. }
  33. int main() {
  34. <!-- -->
  35. test01();
  36. system("pause");
  37. return 0;
  38. }

3.3 deque赋值操作

对deque容器进行赋值的函数原型:

函数原型 功能
deque& operator=(const deque &deq); 重载等号操作符。
assign(beg, end); 将[beg, end)区间中的数据拷贝赋值给本身。
assign(n, elem); 将n个elem拷贝赋值给本身。

示例:

  1. #include<iostream>;
  2. #include<deque>;
  3. using namespace std;
  4. void printDeque(const deque<int> &d) {
  5. <!-- -->
  6. for (deque<int>; ::const_iterator it = d.begin(); it != d.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. void test01() {
  15. <!-- -->
  16. deque<int>;
  17. d1;
  18. for (int i = 0; i < 10; i++) {
  19. <!-- -->
  20. d1.push_back(i);
  21. }
  22. printDeque(d1);
  23. deque<int>;
  24. d2;
  25. d2 = d1;//重载等号操作符。
  26. printDeque(d2);
  27. deque<int>;
  28. d3;
  29. d3.assign(d1.begin(), d1.end());//将[beg, end)区间中的数据拷贝赋值给本身。
  30. printDeque(d3);
  31. deque<int>;
  32. d4;
  33. d4.assign(10, 188);//将n个elem拷贝赋值给本身。
  34. printDeque(d4);
  35. }
  36. int main() {
  37. <!-- -->
  38. test01();
  39. system("pause");
  40. return 0;
  41. }

3.4 deque大小操作

对deque容器的大小进行操作的函数原型:

函数原型 功能
deque.empty(); 判断容器是否为空。
deque.size(); 返回容器中元素的个数。
deque.resize(num); 重新指定容器的长度为num,若容器变长,则以默认值填充新位置;如果容器变短,则末尾超出容器长度的元素被删除。
deque.resize(num, elem); 重新指定容器的长度为num,若容器变长,则以elem值填充新位置;如果容器变短,则末尾超出容器长度的元素被删除。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<deque>;
  4. void printDeque(const deque<int> &d) {
  5. <!-- -->
  6. for (deque<int>; ::const_iterator it = d.begin(); it != d.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. void test01() {
  15. <!-- -->
  16. deque<int>;
  17. d1;
  18. for (int i = 0; i < 10; i++) {
  19. <!-- -->
  20. d1.push_back(i);
  21. }
  22. if (d1.empty())//判断是否为空
  23. {
  24. <!-- -->
  25. cout << "d1为空" << endl;
  26. } else {
  27. <!-- -->
  28. cout << "d1不为空" << endl;
  29. //d1的大小
  30. cout << d1.size() << endl;
  31. }
  32. //重新指定大小
  33. d1.resize(16, 8);//重新指定容器的长度为num,若容器变长,则以elem值填充新位置;如果容器变短,则末尾超出容器长度的元素被删除。
  34. printDeque(d1);
  35. d1.resize(6);//重新指定容器的长度为num,若容器变长,则以默认值填充新位置;如果容器变短,则末尾超出容器长度的元素被删除。
  36. printDeque(d1);
  37. }
  38. int main() {
  39. <!-- -->
  40. test01();
  41. system("pause");
  42. return 0;
  43. }

3.5 deque 插入和删除

向deque容器中插入和删除数据的函数原型:

两端插入操作:
函数原型 功能
push_back(elem); 在容器尾部添加一个数据。
push_front(elem); 在容器头部插入一个数据。
pop_back(); 删除容器最后一个数据。
pop_front(); 删除容器第一个数据。

指定位置操作:
函数原型 功能
insert(pos,elem); 在pos位置插入一个elem元素的拷贝,返回新数据的位置。
insert(pos,n,elem); 在pos位置插入n个elem数据,无返回值。
insert(pos,beg,end); 在pos位置插入[beg,end)区间的数据,无返回值。
clear(); 清空容器的所有数据。
erase(beg,end); 删除[beg,end)区间的数据,返回下一个数据的位置。
erase(pos); 删除pos位置的数据,返回下一个数据的位置。

示例:

  1. #include<iostream>;
  2. #include<deque>;
  3. using namespace std;
  4. void printDeque(const deque<int> &d) {
  5. <!-- -->
  6. for (deque<int>; ::const_iterator it = d.begin(); it != d.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. //两端操作
  15. void test01() {
  16. <!-- -->
  17. deque<int>;
  18. d1;
  19. //尾插
  20. d1.push_back(10);
  21. d1.push_back(20);
  22. //头插
  23. d1.push_front(199);
  24. d1.push_front(18);
  25. //18 199 10 20
  26. printDeque(d1);
  27. //尾删
  28. d1.pop_back();
  29. //头删
  30. d1.pop_front();
  31. printDeque(d1);
  32. }
  33. void test02()//插入
  34. {
  35. <!-- -->
  36. deque<int>;
  37. d;
  38. d.push_back(10);
  39. d.push_back(20);
  40. d.push_front(100);
  41. d.push_front(200);
  42. printDeque(d);
  43. d.insert(d.begin(), 10000);
  44. printDeque(d);
  45. d.insert(d.begin(), 3, 77);//开头插入3个77
  46. printDeque(d);
  47. deque<int>;
  48. d1;
  49. d1.push_back(1);
  50. d1.push_back(2);
  51. d1.push_back(3);
  52. d.insert(d.begin(), d1.begin(), d1.end());
  53. printDeque(d);
  54. }
  55. void test03()//删除
  56. {
  57. <!-- -->
  58. deque<int>;
  59. d;
  60. d.push_back(10);
  61. d.push_back(20);
  62. d.push_front(100);
  63. d.push_front(200);
  64. printDeque(d);
  65. d.erase(d.begin());
  66. printDeque(d);
  67. d.erase(d.begin(), d.end());
  68. d.clear();
  69. printDeque(d);
  70. }
  71. int main() {
  72. <!-- -->
  73. test01();
  74. cout << "----------------" << endl;
  75. test02();
  76. cout << "-----------------" << endl;
  77. test03();
  78. system("pause");
  79. return 0;
  80. }

3.6 deque 数据存取

对deque 中的数据的存取操作的函数原型:

函数原型 功能
at(int idx); 返回索引idx所指的数据。
operator[]; 返回索引idx所指的数据。
front(); 返回容器中第一个数据元素。
back(); 返回容器中最后一个数据元素。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<deque>;
  4. void printDeque(const deque<int> &d) {
  5. <!-- -->
  6. for (deque<int>; ::const_iterator it = d.begin(); it != d.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. //两端操作
  15. void test01() {
  16. <!-- -->
  17. deque<int>;
  18. d;
  19. d.push_back(10);
  20. d.push_back(20);
  21. d.push_front(100);
  22. d.push_front(200);
  23. for (int i = 0; i < d.size(); i++) {
  24. <!-- -->
  25. cout << d[i] << " ";
  26. }
  27. cout << endl;
  28. for (int i = 0; i < d.size(); i++) {
  29. <!-- -->
  30. cout << d.at(i) << " ";
  31. }
  32. cout << endl;
  33. cout << "front:" << d.front() << endl;
  34. cout << "back:" << d.back() << endl;
  35. }
  36. int main() {
  37. <!-- -->
  38. test01();
  39. system("pause");
  40. return 0;
  41. }

3.7 deque 排序

利用算法实现对deque容器进行排序的函数模型:

函数原型 功能
sort(iterator beg, iterator end); 对beg和end区间内元素进行排序。

示例:

  1. #include<iostream>;
  2. #include<deque>;
  3. #include<algorithm>;
  4. using namespace std;
  5. void printDeque(const deque<int> &d) {
  6. <!-- -->
  7. for (deque<int>; ::const_iterator it = d.begin(); it != d.end();
  8. it++)
  9. {
  10. <!-- -->
  11. cout << *it << " ";
  12. }
  13. cout << endl;
  14. }
  15. void test01() {
  16. <!-- -->
  17. deque<int>;
  18. d;
  19. d.push_back(10);
  20. d.push_back(20);
  21. d.push_front(188);
  22. d.push_front(37);
  23. //38 188 10 20
  24. printDeque(d);
  25. sort(d.begin(), d.end());
  26. printDeque(d);
  27. }
  28. int main() {
  29. <!-- -->
  30. test01();
  31. system("pause");
  32. return 0;
  33. }

4、stack 容器

4.1 stack 基本概念

概念:stack是一种先进后出(First In Last Out,FILO)的数据结构,它只有一个出口。
C   STL标准库总结 - 图4
栈中只有顶端的元素才可以被外界使用,因此栈不允许有遍历行为。
栈中进入数据称为 — 入栈 push
栈中弹出数据称为 — 出栈 pop

4.2 stack 常用操作

构造函数:

函数原型 功能
stack stk; stack采用模板类实现, stack对象的默认构造形式。
stack(const stack &stk); 拷贝构造函数。

赋值操作:

函数原型 功能
stack& operator=(const stack &stk); 重载等号操作符。

数据存取:

函数原型 功能
push(elem); 向栈顶添加元素。
pop(); 从栈顶移除第一个元素。
top(); 返回栈顶元素。

大小操作:

函数原型 功能
empty(); 判断堆栈是否为空。
size(); 返回栈的大小。

示例:

  1. #include<iostream>;
  2. #include<stack>;
  3. using namespace std;
  4. void test1() {
  5. <!-- -->
  6. stack<int>;
  7. s;
  8. s.push(1);
  9. s.push(2);
  10. s.push(3);
  11. s.push(4);
  12. cout << "栈的大小: " << s.size() << endl; //4
  13. while (!s.empty()) {
  14. <!-- -->
  15. cout<<"栈顶元素: " << s.top() << endl;
  16. s.pop();
  17. }
  18. cout << "栈的大小: " << s.size() << endl;//0
  19. }
  20. int main() {
  21. <!-- -->
  22. test1();
  23. return 0;
  24. }

5、queue 容器

5.1 queue 基本概念

概念:Queue是一种先进先出(First In First Out,FIFO)的数据结构,它有两个出口。
C   STL标准库总结 - 图5
队列容器允许从一端新增元素,从另一端移除元素。
队列中只有队头和队尾才可以被外界使用,因此队列不允许有遍历行为。
队列中进数据称为 — 入队 push
队列中出数据称为 — 出队 pop

5.2 queue 常用操作

构造函数:

函数原型 功能
queue que; queue采用模板类实现,queue对象的默认构造形式。
queue(const queue &que); 拷贝构造函数。

赋值操作:

函数原型 功能
queue& operator=(const queue &que); 重载等号操作符。

数据存取:

函数原型 功能
push(elem); 往队尾添加元素。
pop(); 从队头移除第一个元素。
back(); 返回最后一个元素。
front(); 返回第一个元素。

大小操作:

函数原型 功能
empty(); 判断堆栈是否为空
size(); 返回栈的大小

示例:

  1. #include <queue>;
  2. #include <string>;
  3. #include <iostream>;
  4. using namespace std;
  5. class Person {
  6. <!-- -->
  7. public:
  8. Person(string name, int age) {
  9. <!-- -->
  10. this->;
  11. m_Name = name;
  12. this->;
  13. m_Age = age;
  14. }
  15. string m_Name;
  16. int m_Age;
  17. };
  18. void test01() {
  19. <!-- -->
  20. //创建队列
  21. queue<Person>;
  22. q;
  23. //准备数据
  24. Person p1("唐僧", 30);
  25. Person p2("孙悟空", 1000);
  26. Person p3("猪八戒", 900);
  27. Person p4("沙僧", 800);
  28. //向队列中添加元素 入队操作
  29. q.push(p1);
  30. q.push(p2);
  31. q.push(p3);
  32. q.push(p4);
  33. //队列不提供迭代器,更不支持随机访问
  34. while (!q.empty()) {
  35. <!-- -->
  36. //输出队头元素
  37. cout << "队头元素-- 姓名: " << q.front().m_Name
  38. << " 年龄: " << q.front().m_Age << endl;
  39. cout << "队尾元素-- 姓名: " << q.back().m_Name
  40. << " 年龄: " << q.back().m_Age << endl;
  41. cout << endl;
  42. //弹出队头元素
  43. q.pop();
  44. }
  45. cout << "队列大小为:" << q.size() << endl;
  46. }
  47. int main() {
  48. <!-- -->
  49. test01();
  50. system("pause");
  51. return 0;
  52. }

6、list 容器

6.1 list基本概念

功能:将数据进行链式存储。
链表(list)是一种物理存储单元上非连续的存储结构,数据元素的逻辑顺序是通过链表中的指针链接实现的 。
链表的组成:链表由一系列结点组成 。
结点的组成:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域STL中的链表是一个双向循环链表。
STL中的链表是一个双向循环链表:
C   STL标准库总结 - 图6
由于链表的存储方式并不是连续的内存空间,因此链表list中的迭代器只支持前移和后移,属于双向迭代器。
list的优点:

  • 采用动态存储分配,不会造成内存浪费和溢出。- 链表执行插入和删除操作十分方便,修改指针即可,不需要移动大量元素。list的缺点:
  • 链表灵活,但是空间(指针域) 和 时间(遍历)额外耗费较大 List有一个重要的性质,插入操作和删除操作都不会造成原有list迭代器的失效,这在vector是不成立的。

    6.2List构造函数

    创建list容器的函数原型:

    | 函数原型 | 功能 | | —- | —- | | list lst; | list采用采用模板类实现,对象的默认构造形式。 | | list(beg,end); | 构造函数将[beg, end)区间中的元素拷贝给本身。 | | list(n,elem); | 构造函数将n个elem拷贝给本身。 | | list(const list &lst); | 拷贝构造函数。 |

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<list>;
  4. //list容器构造函数
  5. void printList(const list<int> &L) {
  6. <!-- -->
  7. for (list<int>; ::const_iterator it = L.begin(); it != L.end();
  8. it++)
  9. {
  10. <!-- -->
  11. cout << *it << " ";
  12. }
  13. cout << endl;
  14. }
  15. void test01() {
  16. <!-- -->
  17. //创建list容器
  18. list<int>;
  19. L1; //默认构造
  20. //添加数据
  21. L1.push_back(10);
  22. L1.push_back(20);
  23. L1.push_back(30);
  24. L1.push_back(40);
  25. //遍历容器
  26. printList(L1);
  27. //区间构造方式
  28. list<int>;
  29. L2(L1.begin(), L1.end());
  30. printList(L2);
  31. //拷贝构造
  32. list<int>;
  33. L3(L2);
  34. printList(L3);
  35. //n个elem
  36. list<int>;
  37. L4(5, 1000);
  38. printList(L4);
  39. }
  40. int main() {
  41. <!-- -->
  42. test01();
  43. system("pause");
  44. return 0;
  45. }

6.3 list赋值和交换

给list容器进行赋值,以及交换list容器的函数原型:

函数原型 功能
assign(beg, end); 将[beg, end)区间中的数据拷贝赋值给本身。
assign(n, elem); 将n个elem拷贝赋值给本身。
list& operator=(const list &lst); 重载等号操作符。
swap(lst); 将lst与本身的元素互换。

示例:

  1. #include<iostream>;
  2. #include<list>;
  3. using namespace std;
  4. //list容器赋值和交换
  5. void printList(const list<int> &L) {
  6. <!-- -->
  7. for (list<int>; ::const_iterator it = L.begin(); it != L.end();
  8. it++)
  9. {
  10. <!-- -->
  11. cout << *it << " ";
  12. }
  13. cout << endl;
  14. }
  15. //赋值
  16. void test01() {
  17. <!-- -->
  18. list<int>;
  19. L1;
  20. L1.push_back(10);
  21. L1.push_back(20);
  22. L1.push_back(30);
  23. L1.push_back(40);
  24. printList(L1);
  25. list<int>;
  26. L2;
  27. L2 = L1; //operator=赋值
  28. printList(L2);
  29. list<int>;
  30. L3;
  31. L3.assign(L2.begin(), L2.end()); //将[beg, end)区间中的数据拷贝赋值给本身
  32. printList(L3);
  33. list<int>;
  34. L4;
  35. L4.assign(10, 100); //将n个elem拷贝赋值给本身
  36. printList(L4);
  37. }
  38. //交换
  39. void test02() {
  40. <!-- -->
  41. list<int>;
  42. L1;
  43. L1.push_back(10);
  44. L1.push_back(20);
  45. L1.push_back(30);
  46. L1.push_back(40);
  47. list<int>;
  48. L2;
  49. L2.assign(10, 100);
  50. cout << "交换前:" << endl;
  51. printList(L1);
  52. printList(L2);
  53. L1.swap(L2);
  54. cout << "交换后:" << endl;
  55. printList(L1);
  56. printList(L2);
  57. }
  58. int main() {
  59. <!-- -->
  60. test01();
  61. test02();
  62. system("pause");
  63. return 0;
  64. }

6.4 list大小操作

对list容器的大小进行操作的函数原型:

函数模型 功能
size(); 返回容器中元素的个数。
empty(); 判断容器是否为空。
resize(num); 重新指定容器的长度为num,若容器变长,则以默认值填充新位置;如果容器变短,则末尾超出容器长度的元素被删除。
resize(num, elem); 重新指定容器的长度为num,若容器变长,则以elem值填充新位置;如果容器变短,则末尾超出容器长度的元素被删除。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<list>;
  4. //list大小操作
  5. void printList(const list<int> &L) {
  6. <!-- -->
  7. for (list<int>; ::const_iterator it = L.begin(); it != L.end();
  8. it++)
  9. {
  10. <!-- -->
  11. cout << *it << " ";
  12. }
  13. cout << endl;
  14. }
  15. void test01() {
  16. <!-- -->
  17. list<int>;
  18. L1;
  19. L1.push_back(10);
  20. L1.push_back(20);
  21. L1.push_back(30);
  22. L1.push_back(40);
  23. printList(L1);
  24. //判断容器是否为空
  25. if (L1.empty()) {
  26. <!-- -->
  27. cout << "L1为空!" << endl;
  28. } else {
  29. <!-- -->
  30. cout << "L1不为空!" << endl;
  31. cout << "L1的元素个数为:" << L1.size() << endl;
  32. }
  33. //重新指定大小
  34. L1.resize(10, 10000);
  35. printList(L1);
  36. L1.resize(2);
  37. printList(L1);
  38. }
  39. int main() {
  40. <!-- -->
  41. test01();
  42. system("pause");
  43. return 0;
  44. }

6.5list 插入和删除

对list容器进行数据的插入和删除的函数原型:

函数原型 功能
push_back(elem); 在容器尾部加入一个元素。
pop_back(); 删除容器中最后一个元素。
push_front(elem); 在容器开头插入一个元素。
pop_front(); 从容器开头移除第一个元素。
insert(pos,elem); 在pos位置插elem元素的拷贝,返回新数据的位置。
insert(pos,n,elem); 在pos位置插入n个elem数据,无返回值。
insert(pos,beg,end); 在pos位置插入[beg,end)区间的数据,无返回值。
clear(); 移除容器的所有数据。
erase(beg,end); 删除[beg,end)区间的数据,返回下一个数据的位置。
erase(pos); 删除pos位置的数据,返回下一个数据的位置。
remove(elem); 删除容器中所有与elem值匹配的元素。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<list>;
  4. //list插入和删除
  5. void printList(const list<int> &L) {
  6. <!-- -->
  7. for (list<int>; ::const_iterator it = L.begin(); it != L.end();
  8. it++)
  9. {
  10. <!-- -->
  11. cout << *it << " ";
  12. }
  13. cout << endl;
  14. }
  15. void test01() {
  16. <!-- -->
  17. list<int>;
  18. L;
  19. //尾插
  20. L.push_back(10);
  21. L.push_back(20);
  22. L.push_back(30);
  23. //头插
  24. L.push_front(100);
  25. L.push_front(200);
  26. L.push_front(300);
  27. printList(L); //300 200 100 10 20 30
  28. //尾删
  29. L.pop_back();
  30. printList(L); //300 200 100 10 20
  31. //头删
  32. L.pop_front();
  33. printList(L); //200 100 10 20
  34. //insert插入
  35. L.insert(L.begin(), 1000);
  36. printList(L); //1000 200 100 10 20
  37. list<int>;
  38. ::iterator it = L.begin();
  39. L.insert(++it, 20000);
  40. printList(L); //1000 20000 200 100 10 20
  41. //删除
  42. it = L.begin();
  43. L.erase(++it);
  44. printList(L); //1000 200 100 10 20
  45. //移除
  46. L.push_back(10000);
  47. L.push_back(10000);
  48. L.push_back(10000);
  49. printList(L); //1000 200 100 10 20 10000 10000 10000
  50. L.remove(10000); //删除容器中所有与10000值匹配的元素
  51. printList(L); //1000 200 100 10 20
  52. //清空
  53. L.clear();
  54. printList(L); //打印一行空格
  55. }
  56. int main() {
  57. <!-- -->
  58. test01();
  59. system("pause");
  60. return 0;
  61. }

6.6 list 数据存取

对list容器中数据进行存取的函数原型:

函数原型 功能
front(); 返回第一个元素。
back(); 返回最后一个元素。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include&lt<t>;
  4. //list数据存取
  5. void test01() {
  6. <!-- -->
  7. list<int>;
  8. L1;
  9. L1.push_back(10);
  10. L1.push_back(20);
  11. L1.push_back(30);
  12. L1.push_back(40);
  13. //L1[0]; //错误,不可以用[]访问list容器中的元素
  14. //L1.at(0); //错误,不可以用at访问list容器中的元素
  15. //上述两种方式均不能访问list容器中的元素的原因是list本质是链表,不是用连续线性空间访问存储数据,迭代器也是不支持随机访问的
  16. cout << "第一个元素为:" << L1.front() << endl;
  17. cout << "最后一个元素为:" << L1.back() << endl;
  18. //验证迭代器不支持随机访问
  19. list<int>;
  20. ::iterator it = L1.begin();
  21. it++; //支持双向
  22. it--;
  23. //it = it + 1; //错误,不支持随机访问
  24. }
  25. int main() {
  26. <!-- -->
  27. test01();
  28. system("pause");
  29. return 0;
  30. }

6.7 list反转和排序

将容器中的元素反转,以及将容器中的数据进行排序的函数原型:

函数原型 功能
reverse(); 反转链表。
sort(); 链表排序。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<list>;
  4. //list反转和排序
  5. void printList(const list<int> &L) {
  6. <!-- -->
  7. for (list<int>; ::const_iterator it = L.begin(); it != L.end();
  8. it++)
  9. {
  10. <!-- -->
  11. cout << *it << " ";
  12. }
  13. cout << endl;
  14. }
  15. void test01() {
  16. <!-- -->
  17. list<int>;
  18. L1;
  19. L1.push_back(20);
  20. L1.push_back(10);
  21. L1.push_back(50);
  22. L1.push_back(40);
  23. L1.push_back(30);
  24. cout << "反转前:" << endl;
  25. printList(L1);
  26. L1.reverse(); // 反转
  27. cout << "反转后:" << endl;
  28. printList(L1);
  29. }
  30. bool myCompare(int v1, int v2) {
  31. <!-- -->
  32. //降序:让第一个数大于第二个数
  33. return v1 > ;
  34. v2;
  35. }
  36. void test02() {
  37. <!-- -->
  38. list<int>;
  39. L1;
  40. L1.push_back(20);
  41. L1.push_back(10);
  42. L1.push_back(50);
  43. L1.push_back(40);
  44. L1.push_back(30);
  45. cout << "排序前:" << endl;
  46. printList(L1);
  47. //sort(L1.begin(), L1.end()); //错误,所有不支持随机访问迭代器的容器,不可以用标准算法,但其内部会提供对应一些算法
  48. L1.sort(); // 排序:默认排序规则是从小到大,即升序
  49. cout << "排序后:" << endl;
  50. printList(L1);
  51. L1.sort(myCompare); //降序
  52. printList(L1);
  53. }
  54. int main() {
  55. <!-- -->
  56. test01();
  57. test02();
  58. system("pause");
  59. return 0;
  60. }

7、set/multiset 容器

7.1 set基本概念

功能:
所有元素都会在插入时自动被排序。
本质:
set/multiset属于关联式容器,底层结构是用二叉树实现。
set和multiset区别:

  • set不允许容器中有重复的元素。- multiset允许容器中有重复的元素。

    7.2 set构造和赋值

    创建set容器以及赋值的函数模型:

    构造:
函数模型 功能
set st; 默认构造函数。
set(const set &st); 拷贝构造函数。

赋值:

函数原型 功能
set& operator=(const set &st); 重载等号操作符。

示例:

  1. #include <iostream>;
  2. #include <set>;
  3. using namespace std;
  4. void printset(const set<int> &st) {
  5. <!-- -->
  6. for (set<int>; ::const_iterator it = st.begin(); it != st.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. void test01() {
  15. <!-- -->
  16. set<int>;
  17. s1;
  18. //插入数据 只有insert方式
  19. s1.insert(10);
  20. s1.insert(40);
  21. s1.insert(20);
  22. s1.insert(30);
  23. s1.insert(20);
  24. printset(s1);
  25. }
  26. int main() {
  27. <!-- -->
  28. test01();
  29. }

7.3 set大小和交换

统计set容器大小以及交换set容器的函数原型:

函数原型 功能
size(); 返回容器中元素的数目。
empty(); 判断容器是否为空。
swap(st); 交换两个集合容器。

示例:

  1. #include <iostream>;
  2. #include <set>;
  3. using namespace std;
  4. void printset(const set<int> &st) {
  5. <!-- -->
  6. for (set<int>; ::const_iterator it = st.begin(); it != st.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. void test01() {
  15. <!-- -->
  16. set<int>;
  17. s1;
  18. //插入数据 只有insert方式
  19. s1.insert(10);
  20. s1.insert(40);
  21. s1.insert(20);
  22. s1.insert(30);
  23. s1.insert(20);
  24. printset(s1);
  25. //判断容器是否为空
  26. if (s1.empty()) {
  27. <!-- -->
  28. cout << "s1为空";
  29. } else {
  30. <!-- -->
  31. cout << "s1不为空" << endl;
  32. cout << "s1的大小为: " << s1.size();
  33. }
  34. }
  35. void test02() {
  36. <!-- -->
  37. set<int>;
  38. s1;
  39. //插入数据 只有insert方式
  40. s1.insert(10);
  41. s1.insert(40);
  42. s1.insert(20);
  43. s1.insert(30);
  44. set<int>;
  45. s2;
  46. s2.insert(100);
  47. s2.insert(400);
  48. s2.insert(200);
  49. s2.insert(300);
  50. cout << "交换前: " << endl;
  51. printset(s1);
  52. printset(s2);
  53. cout << "交换后: " << endl;
  54. s1.swap(s2);
  55. printset(s1);
  56. printset(s2);
  57. }
  58. int main() {
  59. <!-- -->
  60. test01();
  61. test02();
  62. }

7.4 set插入和删除

set容器进行插入数据和删除数据的函数原型:

函数原型 功能
insert(); 在容器中插入元素。
clear(); 清除所有元素。
erase(pos); 删除pos迭代器所指的元素,返回下一个元素的迭代器。
erase(beg,end); 删除区间[beg,end]的所有元素,返回下一个元素的迭代器。
erase(elem); 删除容器值中值为elem的元素。

示例:

  1. #include <iostream>;
  2. #include <set>;
  3. using namespace std;
  4. void printset(const set<int> &st) {
  5. <!-- -->
  6. for (set<int>; ::const_iterator it = st.begin(); it != st.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. void test01() {
  15. <!-- -->
  16. set<int>;
  17. s1;
  18. //插入数据 只有insert方式
  19. s1.insert(30);
  20. s1.insert(40);
  21. s1.insert(20);
  22. s1.insert(10);
  23. printset(s1);
  24. //删除
  25. s1.erase(s1.begin());
  26. printset(s1);
  27. //删除重载版本
  28. s1.erase(30);
  29. printset(s1);
  30. //清空
  31. //s1.erase(s1.begin(),s1.end());
  32. s1.clear();
  33. printset(s1);
  34. }
  35. int main() {
  36. <!-- -->
  37. test01();
  38. }

7.5 set查找和统计

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

函数原型 功能
find(key); 查找key是否存在,若存在返回该元素的迭代器;若不存在,返回set.end()
count(key); 统计key元素的个数

示例:

  1. #include <iostream>;
  2. #include <set>;
  3. using namespace std;
  4. void printset(const set<int> &st) {
  5. <!-- -->
  6. for (set<int>; ::const_iterator it = st.begin(); it != st.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << *it << " ";
  11. }
  12. cout << endl;
  13. }
  14. void test01() {
  15. <!-- -->
  16. set<int>;
  17. s1;
  18. //插入数据 只有insert方式
  19. s1.insert(30);
  20. s1.insert(40);
  21. s1.insert(20);
  22. s1.insert(10);
  23. printset(s1);
  24. //查找
  25. set<int>;
  26. ::iterator pos = s1.find(30);
  27. if (pos != s1.end()) {
  28. <!-- -->
  29. cout << "找到了元素: " << *pos << endl;
  30. } else {
  31. <!-- -->
  32. cout << "未找到元素" << endl;
  33. }
  34. //统计
  35. int num = s1.count(30);
  36. //对于set容器 统计结果 要么为0,要么为1
  37. cout << "num:30 个数 " << num << endl;
  38. }
  39. int main() {
  40. <!-- -->
  41. test01();
  42. }

7.6 set和multiset区别

二者的区别:

  • set不可以插入重复数据,而multiset可以- set插入数据的同时会返回插入结果,表示插入是否成功- multiset不会检测数据,因此可以插入重复数据

    示例:

    ```cpp

    include ;

    include ;

using namespace std;

void printset(const set &st) { for (set; ::const_iterator it = st.begin(); it != st.end(); it++) { cout << *it << “ “; } cout << endl; }

void test01() { set; s; pair; ::iterator, bool >; ret = s.insert(10);

  1. if (ret.second) {
  2. <!-- -->
  3. cout << "第1次插入成功" << endl;
  4. } else {
  5. <!-- -->
  6. cout << "第1次插入失败" << endl;
  7. }
  8. ret = s.insert(10);
  9. if (ret.second) {
  10. <!-- -->
  11. cout << "第2次插入成功" << endl;
  12. } else {
  13. <!-- -->
  14. cout << "第2次插入失败" << endl;
  15. }
  16. multiset<int>;
  17. ms;
  18. ms.insert(10);
  19. ms.insert(10);
  20. for (multiset<int>; ::iterator it = ms.begin(); it != ms.end();
  21. it++)
  22. {
  23. <!-- -->
  24. cout << *it << " ";
  25. }
  26. cout << endl;

}

int main() { test01(); }

  1. <a name="ZqIle"></a>
  2. ### 7.7 pair对组创建
  3. <a name="JatYc"></a>
  4. #### 成对出现的数据,利用对组可以返回两个数据的函数模型:
  5. | 函数模型 | 功能 |
  6. | --- | --- |
  7. | `pair<type, type>; p(value1, value2);` | 返回两个数据。 |
  8. | `pair<type, type>; p =make_pair(value1, value2);` | 返回两个数据。 |
  9. <a name="pWvUV"></a>
  10. #### 示例:
  11. ```cpp
  12. #include <iostream>;
  13. #include <string>;
  14. using namespace std;
  15. void test01() {
  16. <!-- -->
  17. //第一种方式
  18. pair<string, int>;
  19. p("TOM", 99);
  20. cout << "姓名: " << p.first << "年龄: " << p.second << endl;
  21. //第二种方式
  22. pair<string, int>;
  23. p2 = make_pair("Jerry", 88);
  24. cout << "姓名: " << p2.first << "年龄: " << p2.second << endl;
  25. }
  26. int main() {
  27. <!-- -->
  28. test01();
  29. }

7.8 set容器排序

  • set容器默认排序为从小到大,掌握如何改变排序规则。

    主要技术点:

  • 利用仿函数,可以改变排序规则。

    内置数据类型的示例如下:

    ```cpp

    include ;

    include ;

using namespace std;

class MyCompare { public: bool operator()(int v1, int v2) const { return v1 > ; v2; } };

void test01() { set; s1; s1.insert(10); s1.insert(40); s1.insert(30); s1.insert(88);

  1. for (set<int>; ::iterator it = s1.begin(); it != s1.end();
  2. it++)
  3. {
  4. <!-- -->
  5. cout << *it << " ";
  6. }
  7. cout << endl;
  8. //指定排序规则为从大到小
  9. set<int, MyCompare>;
  10. s2;
  11. s2.insert(10);
  12. s2.insert(40);
  13. s2.insert(30);
  14. s2.insert(88);
  15. for (set<int, MyCompare>; ::iterator it = s2.begin(); it != s2.end();
  16. it++)
  17. {
  18. <!-- -->
  19. cout << *it << " ";
  20. }
  21. cout << endl;

}

int main() { test01();

}

  1. <a name="WkmW4"></a>
  2. #### 自定义数据类型的示例如下:
  3. ```cpp
  4. #include <iostream>;
  5. #include <set>;
  6. using namespace std;
  7. class Person {
  8. <!-- -->
  9. public:
  10. Person(string name, int age) {
  11. <!-- -->
  12. m_name = name;
  13. m_age = age;
  14. }
  15. string m_name;
  16. int m_age;
  17. };
  18. class ComparePerson {
  19. <!-- -->
  20. public:
  21. bool operator()(const Person &amp;
  22. p1,
  23. const Person &amp;
  24. p2)const
  25. {
  26. <!-- -->
  27. //按照年龄 降序
  28. return p1.m_age > ;
  29. p2.m_age;
  30. }
  31. };
  32. void test01() {
  33. <!-- -->
  34. //创建Person对象
  35. Person
  36. p1("刘备", 99);
  37. Person p2("关羽", 78);
  38. Person p3("赵云", 88);
  39. Person p4("张飞", 68);
  40. //自定义数据类型 需先指定排序规则
  41. set<Person, ComparePerson>;
  42. s;
  43. s.insert(p1);
  44. s.insert(p2);
  45. s.insert(p3);
  46. s.insert(p4);
  47. for (set<Person>; ::iterator it = s.begin(); it != s.end();
  48. it++)
  49. {
  50. <!-- -->
  51. cout << "姓名:" << (*it).m_name << " 年龄:" << (*it).m_age << endl;
  52. }
  53. cout << endl;
  54. }
  55. int main() {
  56. <!-- -->
  57. test01();
  58. }

8、map/multimap 容器

8.1 map基本概念

功能:

  • map中所有元素都是pair, pair中第一个元素为key(键值),起到索引作用,第二个元素为value(实值),所有元素都会根据元素的键值自动排序。

    本质:

  • map/multimap属于关联式容器,底层结构是用二叉树实现。

    优点:

  • 可以根据key值快速找到value值 。map和multimap区别:

  • map不允许容器中有重复key值元素 - multimap允许容器中有重复key值元素

    8.2 map构造和赋值

    对map容器进行构造和赋值操作的函数原型:

    构造:
函数原型 功能
map<T1, T2>; mp; map默认构造函数。
map(const map &mp); 拷贝构造函数。

赋值:

函数原型 功能
map& operator=(const map &mp); 重载等号操作符。

示例:

  1. #include<iostream>;
  2. #include<map>;
  3. using namespace std;
  4. void printMap(map<int, int> &m) {
  5. <!-- -->
  6. for (map<int, int>; ::iterator it = m.begin(); it != m.end();
  7. it++) {
  8. <!-- -->
  9. cout << "key=" << it->;
  10. first << " value=" << it->;
  11. second << endl;
  12. }
  13. cout << endl;
  14. }
  15. void test01() {
  16. <!-- -->
  17. map<int, int>;
  18. m;
  19. m.insert(pair<int, int>;
  20. (1, 10));
  21. m.insert(pair<int, int>;
  22. (2, 20));
  23. m.insert(pair<int, int>;
  24. (3, 30));
  25. printMap(m);
  26. map<int, int>;
  27. m2(m);
  28. printMap(m2);
  29. map<int, int>;
  30. m3;
  31. m3 = m2;
  32. printMap(m3);
  33. cout << (m3.find(3))->;
  34. second << endl;
  35. }
  36. int main() {
  37. <!-- -->
  38. test01();
  39. system("pause");
  40. return 0;
  41. }

8.3 map大小和交换

统计map容器大小以及交换map容器的函数原型:

函数原型 功能
size(); 返回容器中元素的数目。
empty(); 判断容器是否为空。
swap(st); 交换两个集合容器。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<map>;
  4. //map大小和交换
  5. void printMap(map<int, int> &m) {
  6. <!-- -->
  7. for (map<int, int>; ::iterator it = m.begin(); it != m.end();
  8. it++)
  9. {
  10. <!-- -->
  11. cout << "key = " << (*it).first << " value = " << it->;
  12. second << endl;
  13. }
  14. cout << endl;
  15. }
  16. //大小
  17. void test01() {
  18. <!-- -->
  19. map<int, int>;
  20. m1;
  21. m1.insert(pair<int, int>;
  22. (1, 10));
  23. m1.insert(pair<int, int>;
  24. (2, 20));
  25. m1.insert(pair<int, int>;
  26. (3, 30));
  27. if (m1.empty()) {
  28. <!-- -->
  29. cout << "m1为空!" << endl;
  30. } else {
  31. <!-- -->
  32. cout << "m1不为空!" << endl;
  33. cout << "m1的大小为:" << m1.size() << endl;
  34. }
  35. }
  36. //交换
  37. void test02() {
  38. <!-- -->
  39. map<int, int>;
  40. m1;
  41. m1.insert(pair<int, int>;
  42. (1, 10));
  43. m1.insert(pair<int, int>;
  44. (2, 20));
  45. m1.insert(pair<int, int>;
  46. (3, 30));
  47. map<int, int>;
  48. m2;
  49. m2.insert(pair<int, int>;
  50. (4, 100));
  51. m2.insert(pair<int, int>;
  52. (5, 200));
  53. m2.insert(pair<int, int>;
  54. (6, 300));
  55. cout << "交换前:" << endl;
  56. printMap(m1);
  57. printMap(m2);
  58. cout << "交换后:" << endl;
  59. m1.swap(m2);
  60. printMap(m1);
  61. printMap(m2);
  62. }
  63. int main() {
  64. <!-- -->
  65. test01();
  66. test02();
  67. system("pause");
  68. return 0;
  69. }

8.4 map插入和删除

map容器进行插入数据和删除数据的函数原型:

函数原型 功能
insert(elem); 在容器中插入元素。
clear(); 清除所有元素。
erase(pos); 删除pos迭代器所指的元素,返回下一个元素的迭代器。
erase(beg, end); 删除区间[beg,end)的所有元素 ,返回下一个元素的迭代器。
erase(key); 删除容器中值为key的元素。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<map>;
  4. //map插入和删除
  5. void printMap(map<int, int> &m) {
  6. <!-- -->
  7. for (map<int, int>; ::iterator it = m.begin(); it != m.end();
  8. it++)
  9. {
  10. <!-- -->
  11. cout << "key = " << it->;
  12. first << " value = " << it->;
  13. second << endl;
  14. }
  15. cout << endl;
  16. }
  17. void test01() {
  18. <!-- -->
  19. map<int, int>;
  20. m;
  21. //插入
  22. //第一种方式
  23. m.insert(pair<int, int>;
  24. (1, 10));
  25. //第二种方式
  26. m.insert(make_pair(2, 20));
  27. //第三种方式
  28. m.insert(map < int, int >;
  29. ::value_type(3, 30));
  30. //第四种方式([]不建议用于插数,用途为可以利用key访问value)
  31. m[4] = 40;
  32. //cout << m[4] << endl;
  33. printMap(m);
  34. //删除
  35. m.erase(m.begin());
  36. printMap(m);
  37. m.erase(3); //按照key删除,删掉key为3的数据
  38. printMap(m);
  39. //清空
  40. //m.erase(m.begin(), m.end());
  41. m.clear();
  42. printMap(m);
  43. }
  44. int main() {
  45. <!-- -->
  46. test01();
  47. system("pause");
  48. return 0;
  49. }

8.5 map查找和统计

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

函数原型 功能
find(key); 查找key是否存在,若存在,返回该键的元素的迭代器;若不存在,返回set.end()。
count(key); 统计key的元素个数。

示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<map>;
  4. //map统计和查找
  5. void test01() {
  6. <!-- -->
  7. map<int, int>;
  8. m;
  9. m.insert(pair<int, int>;
  10. (1, 10));
  11. m.insert(pair<int, int>;
  12. (2, 20));
  13. m.insert(pair<int, int>;
  14. (3, 30));
  15. m.insert(pair<int, int>;
  16. (3, 40));
  17. //查找
  18. map<int, int>;
  19. ::iterator pos = m.find(3);
  20. if (pos != m.end()) {
  21. <!-- -->
  22. cout << "查找到元素 key = " << (*pos).first << " value = " << (*pos).second << endl;
  23. } else {
  24. <!-- -->
  25. cout << "未找到元素!" << endl;
  26. }
  27. //统计
  28. int num = m.count(3); //map不允许插入重复的key元素,对于map而言,count结果要么为0,要么为1
  29. cout << "num = " << num << endl;
  30. }
  31. int main() {
  32. <!-- -->
  33. test01();
  34. system("pause");
  35. return 0;
  36. }

8.6 map容器排序

  • map容器默认排序规则为 按照key值进行 从小到大排序,掌握如何改变排序规则。

    主要技术点:

  • 利用仿函数,可以改变排序规则。

    map存放内置数据类型的示例如下:

    ```cpp

    include;

using namespace std;

include;

//map排序

//仿函数 class compareMap { public: bool operator()(int v1, int v2) { return v1 > ; v2; //降序 } };

void test01() { map; m;

  1. m.insert(make_pair(2, 20));
  2. m.insert(make_pair(1, 10));
  3. m.insert(make_pair(5, 50));
  4. m.insert(make_pair(3, 30));
  5. m.insert(make_pair(4, 40));
  6. for (map<int, int, compareMap>; ::iterator it = m.begin(); it != m.end();
  7. it++)
  8. {
  9. <!-- -->
  10. cout << "key = " << it->;
  11. first << " value = " << it->;
  12. second << endl;
  13. }

}

int main() { test01();

  1. system("pause");
  2. return 0;

}

  1. <a name="MgpNx"></a>
  2. #### map存放自定义数据类型的示例如下:
  3. ```cpp
  4. #include<iostream>;
  5. using namespace std;
  6. #include<map>;
  7. #include<string>;
  8. //map排序
  9. class Person {
  10. <!-- -->
  11. public:
  12. Person(string name, int age) {
  13. <!-- -->
  14. this->;
  15. m_Name = name;
  16. this->;
  17. m_Age = age;
  18. }
  19. string m_Name;
  20. int m_Age;
  21. };
  22. class compareMap {
  23. <!-- -->
  24. public:
  25. bool operator()(const Person p1, const Person p2) {
  26. <!-- -->
  27. return p1.m_Age > ;
  28. p2.m_Age; //降序
  29. }
  30. };
  31. void test01() {
  32. <!-- -->
  33. map<Person, int, compareMap>;
  34. m;
  35. //创建Person对象
  36. Person p1("刘备", 24);
  37. Person p2("关羽", 28);
  38. Person p3("张飞", 25);
  39. Person p4("赵云", 21);
  40. m.insert(pair<Person, int>;
  41. (p1, 1));
  42. m.insert(make_pair(p2, 2));
  43. m.insert(make_pair(p3, 3));
  44. m.insert(make_pair(p4, 4));
  45. for (map<Person, int, compareMap>; ::iterator it = m.begin(); it != m.end();
  46. it++)
  47. {
  48. <!-- -->
  49. cout << "序号: " << it->;
  50. second << " 姓名 " << it->;
  51. first.m_Name << " 年龄:" << it->;
  52. first.m_Age << endl;
  53. }
  54. }
  55. int main() {
  56. <!-- -->
  57. test01();
  58. system("pause");
  59. return 0;
  60. }

9、STL 常用算法

概述:

  • 算法主要是由头文件 组成。- 是所有STL头文件中最大的一个,范围涉及到比较、 交换、查找、遍历操作、复制、修改等等 - 体积很小,只包括几个在序列上面进行简单数学运算的模板函数 - 定义了一些模板类,用以声明函数对象。

    9.1 常用遍历算法

    掌握常用的遍历算法的函数模型:

    | 函数原型 | 功能 | 参数说明 | | —- | —- | —- | | for_each(iterator beg, iterator end, _func); | 遍历算法,遍历容器元素。 | beg 开始迭代器, end 结束迭代器, _func 函数或者函数对象 | | transform(iterator beg1, iterator end1, iterator beg2, _func); | 搬运容器到另一个容器中。 | beg1 源容器开始迭代器, end1 源容器结束迭代器, beg2 目标容器开始迭代器, _func 函数或者函数对象 |

for_each示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. //普通函数
  4. void print01(int val) {
  5. <!-- -->
  6. cout << val << " ";
  7. }
  8. //函数对象
  9. class print02 {
  10. <!-- -->
  11. public:
  12. void operator()(int val) {
  13. <!-- -->
  14. cout << val << " ";
  15. }
  16. };
  17. //for_each算法基本用法
  18. void test01() {
  19. <!-- -->
  20. vector<int>;
  21. v;
  22. for (int i = 0; i < 10; i++) {
  23. <!-- -->
  24. v.push_back(i);
  25. }
  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. }

transform示例:

  1. #include<vector>;
  2. #include<algorithm>;
  3. //常用遍历算法 搬运 transform
  4. class TransForm {
  5. <!-- -->
  6. public:
  7. int operator()(int val) {
  8. <!-- -->
  9. return val;
  10. }
  11. };
  12. class MyPrint {
  13. <!-- -->
  14. public:
  15. void operator()(int val) {
  16. <!-- -->
  17. cout << val << " ";
  18. }
  19. };
  20. void test01() {
  21. <!-- -->
  22. vector<int>;
  23. v;
  24. for (int i = 0; i < 10; i++) {
  25. <!-- -->
  26. v.push_back(i);
  27. }
  28. vector<int>;
  29. vTarget; //目标容器
  30. vTarget.resize(v.size()); // 目标容器需要提前开辟空间
  31. transform(v.begin(), v.end(), vTarget.begin(), TransForm());
  32. for_each(vTarget.begin(), vTarget.end(), MyPrint());
  33. }
  34. int main() {
  35. <!-- -->
  36. test01();
  37. system("pause");
  38. return 0;
  39. }

9.2 常用查找算法

掌握常用的查找算法的函数模型:

函数模型 功能 参数说明
find(iterator beg, iterator end, value); 按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置。 beg 开始迭代器, end 结束迭代器, value 查找的元素
find_if(iterator beg, iterator end, _Pred); 按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置。 beg 开始迭代器, end 结束迭代器, value 查找的元素,_Pred 函数或者谓词(返回bool类型的仿函数)
adjacent_find(iterator beg, iterator end); 查找相邻重复元素,返回相邻元素的第一个位置的迭代器。 beg 开始迭代器, end 结束迭代器
bool binary_search(iterator beg, iterator end, value); 查找指定的元素,查到返回true,否则false。 beg 开始迭代器, end 结束迭代器, value 查找的元素
count(iterator beg, iterator end, value); 统计元素个数。 beg 开始迭代器, end 结束迭代器, value 查找的元素
count_if(iterator beg, iterator end, _Pred); 按条件统计元素个数。 beg 开始迭代器, end 结束迭代器,_Pred 函数或者谓词(返回bool类型的仿函数)

find示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<vector>;
  4. #include<algorithm>;
  5. #include<string>;
  6. //常用查找算法:find
  7. //1. 查找内置数据类型
  8. void test01() {
  9. <!-- -->
  10. vector<int>;
  11. v;
  12. for (int i = 0; i < 10; i++) {
  13. <!-- -->
  14. v.push_back(i);
  15. }
  16. //查找容器中是否有5这个元素
  17. vector<int>;
  18. ::iterator it = find(v.begin(), v.end(), 5);
  19. if (it == v.end()) {
  20. <!-- -->
  21. cout << "未找到等于5的元素!" << endl;
  22. } else {
  23. <!-- -->
  24. cout << "找到等于5的元素:" << *it << endl;
  25. }
  26. }
  27. //2. 查找自定义数据类型(必须重载==)
  28. class Person {
  29. <!-- -->
  30. public:
  31. Person(string name, int age) {
  32. <!-- -->
  33. this->;
  34. m_Name = name;
  35. this->;
  36. m_Age = age;
  37. }
  38. //重载==使得底层find知道如何对比Person数据类型
  39. bool operator==(const Person &amp;
  40. p)
  41. {
  42. <!-- -->
  43. if (this->;m_Name == p.m_Name & amp & this->;
  44. m_Age == p.m_Age)
  45. {
  46. <!-- -->
  47. return true;
  48. }
  49. else
  50. {
  51. <!-- -->
  52. return false;
  53. }
  54. }
  55. string m_Name;
  56. int m_Age;
  57. };
  58. void test02() {
  59. <!-- -->
  60. vector<Person>;
  61. v;
  62. //创建数据
  63. Person p1("aaa", 10);
  64. Person p2("bbb", 20);
  65. Person p3("ccc", 30);
  66. Person p4("ddd", 40);
  67. //放到容器中
  68. v.push_back(p1);
  69. v.push_back(p2);
  70. v.push_back(p3);
  71. v.push_back(p4);
  72. //查找容器中是否有p2这个人
  73. vector <Person>;
  74. ::iterator it = find(v.begin(), v.end(), p2);
  75. if (it == v.end()) {
  76. <!-- -->
  77. cout << "未找到p2!" << endl;
  78. } else {
  79. <!-- -->
  80. cout << "找到p2!姓名:" << it->;
  81. m_Name << " 年龄:" << it->;
  82. m_Age << endl;
  83. }
  84. }
  85. int main() {
  86. <!-- -->
  87. test01();
  88. test02();
  89. system("pause");
  90. return 0;
  91. }

find_if示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<vector>;
  4. #include<algorithm>;
  5. #include<string>;
  6. //常用查找算法:find_if
  7. //1. 查找内置数据类型
  8. class GreaterFive {
  9. <!-- -->
  10. public:
  11. bool operator()(int val) {
  12. <!-- -->
  13. return val > ;
  14. 5;
  15. }
  16. };
  17. void test01() {
  18. <!-- -->
  19. vector<int>;
  20. v;
  21. for (int i = 0; i < 10; i++) {
  22. <!-- -->
  23. v.push_back(i);
  24. }
  25. //查找容器中是否有大于5的元素
  26. vector<int>;
  27. ::iterator it = find_if(v.begin(), v.end(), GreaterFive());
  28. if (it == v.end()) {
  29. <!-- -->
  30. cout << "未找到大于5的元素!" << endl;
  31. } else {
  32. <!-- -->
  33. cout << "找到大于5的元素:" << *it << endl;
  34. }
  35. }
  36. //2. 查找自定义数据类型(必须重载==)
  37. class Person {
  38. <!-- -->
  39. public:
  40. Person(string name, int age) {
  41. <!-- -->
  42. this->;
  43. m_Name = name;
  44. this->;
  45. m_Age = age;
  46. }
  47. //重载==使得底层find知道如何对比Person数据类型
  48. bool operator==(const Person &amp;
  49. p)
  50. {
  51. <!-- -->
  52. if (this->;m_Name == p.m_Name & amp & this->;
  53. m_Age == p.m_Age)
  54. {
  55. <!-- -->
  56. return true;
  57. }
  58. else
  59. {
  60. <!-- -->
  61. return false;
  62. }
  63. }
  64. string m_Name;
  65. int m_Age;
  66. };
  67. class Greater20 {
  68. <!-- -->
  69. public:
  70. bool operator()(Person &amp;
  71. p)
  72. {
  73. <!-- -->
  74. return p.m_Age > ;
  75. 20;
  76. }
  77. };
  78. void test02() {
  79. <!-- -->
  80. vector<Person>;
  81. v;
  82. //创建数据
  83. Person p1("aaa", 10);
  84. Person p2("bbb", 20);
  85. Person p3("ccc", 30);
  86. Person p4("ddd", 40);
  87. //放到容器中
  88. v.push_back(p1);
  89. v.push_back(p2);
  90. v.push_back(p3);
  91. v.push_back(p4);
  92. //查找容器中是否有年龄大于20的人
  93. vector <Person>;
  94. ::iterator it = find_if(v.begin(), v.end(), Greater20());
  95. if (it == v.end()) {
  96. <!-- -->
  97. cout << "未找到年龄大于20的人!" << endl;
  98. } else {
  99. <!-- -->
  100. cout << "找到年龄大于20的人!姓名:" << it->;
  101. m_Name << " 年龄:" << it->;
  102. m_Age << endl;
  103. }
  104. }
  105. int main() {
  106. <!-- -->
  107. test01();
  108. test02();
  109. system("pause");
  110. return 0;
  111. }

adjacent_find示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<vector>;
  4. #include<algorithm>;
  5. #include<string>;
  6. //常用查找算法:adjacent_find
  7. void test01() {
  8. <!-- -->
  9. vector<int>;
  10. v;
  11. v.push_back(0);
  12. v.push_back(2);
  13. v.push_back(0);
  14. v.push_back(3);
  15. v.push_back(1);
  16. v.push_back(4);
  17. v.push_back(3);
  18. v.push_back(3);
  19. //查找容器中是否有相邻重复元素
  20. vector<int>;
  21. ::iterator it = adjacent_find(v.begin(), v.end());
  22. if (it == v.end()) {
  23. <!-- -->
  24. cout << "未找到相邻重复元素!" << endl;
  25. } else {
  26. <!-- -->
  27. cout << "找到相邻重复元素:" << *it << endl;
  28. }
  29. }
  30. int main() {
  31. <!-- -->
  32. test01();
  33. system("pause");
  34. return 0;
  35. }

binary_search示例:

  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>;
  10. v;
  11. for (int i = 0; i < 10; i++) {
  12. <!-- -->
  13. v.push_back(i);
  14. }
  15. //v.push_back(2); //如果是无序序列,结果未知!
  16. //查找容器中是否有9这个元素
  17. bool ret = binary_search(v.begin(), v.end(), 9); //注意:binary_search使用时,容器必须是有序序列
  18. if (ret) {
  19. <!-- -->
  20. cout << "找到等于9的元素!" << endl;
  21. } else {
  22. <!-- -->
  23. cout << "未找到等于9的元素!" << endl;
  24. }
  25. }
  26. int main() {
  27. <!-- -->
  28. test01();
  29. system("pause");
  30. return 0;
  31. }

count示例:

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

count_if示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<vector>;
  4. #include<algorithm>;
  5. #include<string>;
  6. //常用查找算法:count_if
  7. //1. 统计内置数据类型
  8. class Greater20 {
  9. <!-- -->
  10. public:
  11. bool operator()(int val) {
  12. <!-- -->
  13. return val > ;
  14. 20;
  15. }
  16. };
  17. void test01() {
  18. <!-- -->
  19. vector<int>;
  20. v;
  21. v.push_back(10);
  22. v.push_back(40);
  23. v.push_back(30);
  24. v.push_back(40);
  25. v.push_back(20);
  26. v.push_back(40);
  27. //统计大于20的元素的个数
  28. int num = count_if(v.begin(), v.end(), Greater20());
  29. cout << "大于20的元素个数为:" << num << endl;
  30. }
  31. //2. 统计自定义数据类型
  32. class Person {
  33. <!-- -->
  34. public:
  35. Person(string name, int age) {
  36. <!-- -->
  37. this->;
  38. m_Name = name;
  39. this->;
  40. m_Age = age;
  41. }
  42. string m_Name;
  43. int m_Age;
  44. };
  45. class AgeGreater20 {
  46. <!-- -->
  47. public:
  48. bool operator()(Person &amp;
  49. p)
  50. {
  51. <!-- -->
  52. return p.m_Age > ;
  53. 20;
  54. }
  55. };
  56. void test02() {
  57. <!-- -->
  58. vector<Person>;
  59. v;
  60. Person p1("刘备", 35);
  61. Person p2("关羽", 35);
  62. Person p3("张飞", 35);
  63. Person p4("赵云", 30);
  64. Person p5("曹操", 20);
  65. v.push_back(p1);
  66. v.push_back(p2);
  67. v.push_back(p3);
  68. v.push_back(p4);
  69. v.push_back(p5);
  70. //统计大于20岁的人员个数
  71. int num = count_if(v.begin(), v.end(), AgeGreater20());
  72. cout << "年龄大于20岁的人员个数为:" << num << endl;
  73. }
  74. int main() {
  75. <!-- -->
  76. test01();
  77. test02();
  78. system("pause");
  79. return 0;
  80. }

9.3 常用排序算法

掌握常用的排序算法的函数原型:

函数原型 功能 参数说明
sort(iterator beg, iterator end, _Pred); 对容器内元素进行排序。 beg 开始迭代器, end 结束迭代器, _Pred 函数或者谓词(返回bool类型的仿函数)
random_shuffle(iterator beg, iterator end); 指定范围内的元素随机调整次序。 beg 开始迭代器, end 结束迭代器
merge(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest); 容器元素合并,并存储到另一容器中。 beg1 容器1开始迭代器, end1 容器1结束迭代器,beg2 容器2开始迭代器, end2 容器2结束迭代器, dest 目标容器开始迭代器
reverse(iterator beg, iterator end); 反转指定范围的元素。 beg 开始迭代器, end 结束迭代器

sort示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. void myPrint(int val) {
  4. <!-- -->
  5. cout << val << " ";
  6. }
  7. void test01() {
  8. <!-- -->
  9. vector<int>;
  10. v;
  11. v.push_back(10);
  12. v.push_back(30);
  13. v.push_back(50);
  14. v.push_back(20);
  15. v.push_back(40);
  16. //sort默认从小到大排序
  17. sort(v.begin(), v.end());
  18. for_each(v.begin(), v.end(), myPrint);
  19. cout << endl;
  20. //从大到小排序
  21. sort(v.begin(), v.end(), greater<int>;
  22. ());
  23. for_each(v.begin(), v.end(), myPrint);
  24. cout << endl;
  25. }
  26. int main() {
  27. <!-- -->
  28. test01();
  29. system("pause");
  30. return 0;
  31. }

random_shuffle示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. #include <ctime>;
  4. class myPrint {
  5. <!-- -->
  6. public:
  7. void operator()(int val) {
  8. <!-- -->
  9. cout << val << " ";
  10. }
  11. };
  12. void test01() {
  13. <!-- -->
  14. srand((unsigned int) time(NULL));
  15. vector<int>;
  16. v;
  17. for (int i = 0; i < 10; i++) {
  18. <!-- -->
  19. v.push_back(i);
  20. }
  21. for_each(v.begin(), v.end(), myPrint());
  22. cout << endl;
  23. //打乱顺序
  24. random_shuffle(v.begin(), v.end());
  25. for_each(v.begin(), v.end(), myPrint());
  26. cout << endl;
  27. }
  28. int main() {
  29. <!-- -->
  30. test01();
  31. system("pause");
  32. return 0;
  33. }

merge示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. class myPrint {
  4. <!-- -->
  5. public:
  6. void operator()(int val) {
  7. <!-- -->
  8. cout << val << " ";
  9. }
  10. };
  11. void test01() {
  12. <!-- -->
  13. vector<int>;
  14. v1;
  15. vector<int>;
  16. v2;
  17. for (int i = 0; i < 10; i++) {
  18. <!-- -->
  19. v1.push_back(i);
  20. v2.push_back(i + 1);
  21. }
  22. vector<int>;
  23. vtarget;
  24. //目标容器需要提前开辟空间
  25. vtarget.resize(v1.size() + v2.size());
  26. //合并 需要两个有序序列
  27. merge(v1.begin(), v1.end(), v2.begin(), v2.end(), vtarget.begin());
  28. for_each(vtarget.begin(), vtarget.end(), myPrint());
  29. cout << endl;
  30. }
  31. int main() {
  32. <!-- -->
  33. test01();
  34. system("pause");
  35. return 0;
  36. }

reverse示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. class myPrint {
  4. <!-- -->
  5. public:
  6. void operator()(int val) {
  7. <!-- -->
  8. cout << val << " ";
  9. }
  10. };
  11. void test01() {
  12. <!-- -->
  13. vector<int>;
  14. v;
  15. v.push_back(10);
  16. v.push_back(30);
  17. v.push_back(50);
  18. v.push_back(20);
  19. v.push_back(40);
  20. cout << "反转前: " << endl;
  21. for_each(v.begin(), v.end(), myPrint());
  22. cout << endl;
  23. cout << "反转后: " << endl;
  24. reverse(v.begin(), v.end());
  25. for_each(v.begin(), v.end(), myPrint());
  26. cout << endl;
  27. }
  28. int main() {
  29. <!-- -->
  30. test01();
  31. system("pause");
  32. return 0;
  33. }/**/

9.4 常用拷贝和替换算法

掌握常用的拷贝和替换算法的函数模型:

函数模型 功能 参数说明
copy(iterator beg, iterator end, iterator dest); 容器内指定范围的元素拷贝到另一容器中。 beg 容器开始迭代器, end 容器结束迭代器,dest 目标容器开始迭代器
replace(iterator beg, iterator end, oldvalue, newvalue); 将区间内旧元素替换成新元素。 beg 开始迭代器, end 结束迭代器, oldvalue 旧的元素,newvalue 新的元素
replace_if(iterator beg, iterator end, _pred, newvalue); 按条件替换元素,满足条件的替换成指定元素。 beg 开始迭代器, end 结束迭代器,_Pred 函数或者谓词(返回bool类型的仿函数),value 替换的新元素
swap(container c1, container c2); 互换两个容器的元素。 c1 容器1,c2容器2

copy示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. class myPrint {
  4. <!-- -->
  5. public:
  6. void operator()(int val) {
  7. <!-- -->
  8. cout << val << " ";
  9. }
  10. };
  11. void test01() {
  12. <!-- -->
  13. vector<int>;
  14. v1;
  15. for (int i = 0; i < 10; i++) {
  16. <!-- -->
  17. v1.push_back(i + 1);
  18. }
  19. vector<int>;
  20. v2;
  21. v2.resize(v1.size());
  22. copy(v1.begin(), v1.end(), v2.begin());
  23. for_each(v2.begin(), v2.end(), myPrint());
  24. cout << endl;
  25. }
  26. int main() {
  27. <!-- -->
  28. test01();
  29. system("pause");
  30. return 0;
  31. }

replace示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. class myPrint {
  4. <!-- -->
  5. public:
  6. void operator()(int val) {
  7. <!-- -->
  8. cout << val << " ";
  9. }
  10. };
  11. void test01() {
  12. <!-- -->
  13. vector<int>;
  14. v;
  15. v.push_back(20);
  16. v.push_back(30);
  17. v.push_back(20);
  18. v.push_back(40);
  19. v.push_back(50);
  20. v.push_back(10);
  21. v.push_back(20);
  22. cout << "替换前:" << endl;
  23. for_each(v.begin(), v.end(), myPrint());
  24. cout << endl;
  25. //将容器中的20 替换成 2000
  26. cout << "替换后:" << endl;
  27. replace(v.begin(), v.end(), 20, 2000);
  28. for_each(v.begin(), v.end(), myPrint());
  29. cout << endl;
  30. }
  31. int main() {
  32. <!-- -->
  33. test01();
  34. system("pause");
  35. return 0;
  36. }

replace_if示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. class myPrint {
  4. <!-- -->
  5. public:
  6. void operator()(int val) {
  7. <!-- -->
  8. cout << val << " ";
  9. }
  10. };
  11. class ReplaceGreater30 {
  12. <!-- -->
  13. public:
  14. bool operator()(int val) {
  15. <!-- -->
  16. return val > ;= 30;
  17. }
  18. };
  19. void test01() {
  20. <!-- -->
  21. vector<int>;
  22. v;
  23. v.push_back(20);
  24. v.push_back(30);
  25. v.push_back(20);
  26. v.push_back(40);
  27. v.push_back(50);
  28. v.push_back(10);
  29. v.push_back(20);
  30. cout << "替换前:" << endl;
  31. for_each(v.begin(), v.end(), myPrint());
  32. cout << endl;
  33. //将容器中大于等于的30 替换成 3000
  34. cout << "替换后:" << endl;
  35. replace_if(v.begin(), v.end(), ReplaceGreater30(), 3000);
  36. for_each(v.begin(), v.end(), myPrint());
  37. cout << endl;
  38. }
  39. int main() {
  40. <!-- -->
  41. test01();
  42. system("pause");
  43. return 0;
  44. }

swap示例:

  1. #include <algorithm>;
  2. #include <vector>;
  3. class myPrint {
  4. <!-- -->
  5. public:
  6. void operator()(int val) {
  7. <!-- -->
  8. cout << val << " ";
  9. }
  10. };
  11. void test01() {
  12. <!-- -->
  13. vector<int>;
  14. v1;
  15. vector<int>;
  16. v2;
  17. for (int i = 0; i < 10; i++) {
  18. <!-- -->
  19. v1.push_back(i);
  20. v2.push_back(i + 100);
  21. }
  22. cout << "交换前: " << endl;
  23. for_each(v1.begin(), v1.end(), myPrint());
  24. cout << endl;
  25. for_each(v2.begin(), v2.end(), myPrint());
  26. cout << endl;
  27. cout << "交换后: " << endl;
  28. swap(v1, v2);
  29. for_each(v1.begin(), v1.end(), myPrint());
  30. cout << endl;
  31. for_each(v2.begin(), v2.end(), myPrint());
  32. cout << endl;
  33. }
  34. int main() {
  35. <!-- -->
  36. test01();
  37. system("pause");
  38. return 0;
  39. }

9.5 常用算术生成算法

掌握常用的算术生成算法的函数模型:

函数模型 功能 参数说明
accumulate(iterator beg, iterator end, value); 计算容器元素累计总和。 beg 开始迭代器, end 结束迭代器, value 起始值
fill(iterator beg, iterator end, value); 向容器中填充元素。 beg 开始迭代器, end 结束迭代器, value 填充的值

accumulate示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include<string>;
  4. #include <vector>;
  5. #include<algorithm>;
  6. #include<numeric>;//算术生成算法
  7. void test01() {
  8. <!-- -->
  9. vector<int>;
  10. v1;
  11. for (int i = 0; i < 100; i++) {
  12. <!-- -->
  13. v1.push_back(i);
  14. }
  15. int total1 = accumulate(v1.begin(), v1.end(), 1000);
  16. cout << "total1: " << total1 << endl;
  17. int total2 = accumulate(v1.begin(), v1.end(), 0);
  18. cout << "total2: " << total2 << endl;
  19. }
  20. int main() {
  21. <!-- -->
  22. test01();
  23. system("pause");
  24. return 0;
  25. }

fill示例:

  1. #include<iostream>;
  2. using namespace std;
  3. #include <vector>;
  4. #include<algorithm>;
  5. class MyPrint {
  6. <!-- -->
  7. public:
  8. void operator()(int val) {
  9. <!-- -->
  10. cout << val << " ";
  11. }
  12. };
  13. void test01() {
  14. <!-- -->
  15. vector<int>;
  16. v1;
  17. v1.resize(10);
  18. fill(v1.begin(), v1.end(), 100);
  19. for_each(v1.begin(), v1.end(), MyPrint());
  20. cout << endl;
  21. }
  22. int main() {
  23. <!-- -->
  24. test01();
  25. system("pause");
  26. return 0;
  27. }

9.6 常用集合算法

掌握常用的集合算法的函数模型:

函数模型 功能 参数说明
set_intersection(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest); 求两个集合的交集。 beg1 容器1开始迭代器,end1 容器1结束迭代器,beg2 容器2开始迭代器,end2 容器2结束迭代器,dest 目标容器开始迭代器
set_union(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest); 求两个集合的并集。 beg1 容器1开始迭代器,end1 容器1结束迭代器,beg2 容器2开始迭代器,end2 容器2结束迭代器,dest 目标容器开始迭代器
set_difference(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest); 求两个集合的差集。 beg1 容器1开始迭代器,end1 容器1结束迭代器,beg2 容器2开始迭代器,end2 容器2结束迭代器,dest 目标容器开始迭代器

set_intersection示例:

  1. #include <iostream>;
  2. #include <vector>;
  3. #include <numeric>;
  4. #include <algorithm>;
  5. using namespace std;
  6. class myPrint {
  7. <!-- -->
  8. public:
  9. void operator()(int val) {
  10. <!-- -->
  11. cout << val << " ";
  12. }
  13. };
  14. void test01() {
  15. <!-- -->
  16. vector<int>;
  17. v1;
  18. vector<int>;
  19. v2;
  20. for (int i = 0; i < 10; i++) {
  21. <!-- -->
  22. v1.push_back(i);
  23. v2.push_back(i + 5);
  24. }
  25. for_each(v1.begin(), v1.end(), myPrint());
  26. cout << endl;
  27. for_each(v2.begin(), v2.end(), myPrint());
  28. cout << endl;
  29. vector<int>;
  30. v3;
  31. v3.resize(min(v1.size(), v2.size()));
  32. vector<int>;
  33. ::iterator itEnd = set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), v3.begin());
  34. for_each(v3.begin(), itEnd, myPrint());
  35. cout << endl;
  36. }
  37. int main() {
  38. <!-- -->
  39. test01();
  40. return 0;
  41. }

set_union示例:

  1. #include <iostream>;
  2. #include <vector>;
  3. #include <numeric>;
  4. #include <algorithm>;
  5. using namespace std;
  6. class myPrint {
  7. <!-- -->
  8. public:
  9. void operator()(int val) {
  10. <!-- -->
  11. cout << val << " ";
  12. }
  13. };
  14. void test01() {
  15. <!-- -->
  16. vector<int>;
  17. v1;
  18. vector<int>;
  19. v2;
  20. for (int i = 0; i < 10; i++) {
  21. <!-- -->
  22. v1.push_back(i);
  23. v2.push_back(i + 5);
  24. }
  25. for_each(v1.begin(), v1.end(), myPrint());
  26. cout << endl;
  27. for_each(v2.begin(), v2.end(), myPrint());
  28. cout << endl;
  29. vector<int>;
  30. v3;
  31. v3.resize(v1.size() + v2.size());
  32. vector<int>;
  33. ::iterator itEnd = set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), v3.begin());
  34. for_each(v3.begin(), itEnd, myPrint());
  35. cout << endl;
  36. }
  37. int main() {
  38. <!-- -->
  39. test01();
  40. return 0;
  41. }

set_difference示例:

  1. #include <iostream>;
  2. #include <vector>;
  3. #include <numeric>;
  4. #include <algorithm>;
  5. using namespace std;
  6. class myPrint {
  7. <!-- -->
  8. public:
  9. void operator()(int val) {
  10. <!-- -->
  11. cout << val << " ";
  12. }
  13. };
  14. void test01() {
  15. <!-- -->
  16. vector<int>;
  17. v1;
  18. vector<int>;
  19. v2;
  20. for (int i = 0; i < 10; i++) {
  21. <!-- -->
  22. v1.push_back(i);
  23. v2.push_back(i + 5);
  24. }
  25. for_each(v1.begin(), v1.end(), myPrint());
  26. cout << endl;
  27. for_each(v2.begin(), v2.end(), myPrint());
  28. cout << endl;
  29. vector<int>;
  30. v3;
  31. v3.resize(max(v1.size(), v2.size()));
  32. //v1和v2的差集
  33. vector<int>;
  34. ::iterator itEnd = set_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), v3.begin());
  35. for_each(v3.begin(), itEnd, myPrint());
  36. cout << endl;
  37. cout << "---------------------------------------" << endl;
  38. //v2和v1的差集
  39. vector<int>;
  40. ::iterator itEnd02 = set_difference(v2.begin(), v2.end(), v1.begin(), v1.end(), v3.begin());
  41. for_each(v3.begin(), itEnd02, myPrint());
  42. cout << endl;
  43. }
  44. int main() {
  45. <!-- -->
  46. test01();
  47. return 0;
  48. }