概述:
组成。
是所有 STL 头文件中最大的一个,范围涉及是比较、交换、查找、遍历操作、复制、修改等等。
定义了一些模板类,用以声明函数对象
体积很小,只包括几个在序列上面进行简单数学运算的模板函数学习目标:
算法简介:
for_each
// 遍历容器transform
// 搬运容器到另一个容器中功能描述:
函数原型:
示例:
#include
#include
#include
using namespace std;
//1.普通函数
void print01(int val) {
cout << val << " ";
}
//2.仿函数
class print02
{
public:
void operator()(int val) {
cout << val << " ";
}
};
int main() {
vector<int> v;
for (int i = 0; i < 10; i++) {
v.push_back(i);
}
for_each(v.begin(), v.end(), print01);//普通函数
cout << endl;
for_each(v.begin(), v.end(), print02());//仿函数的函数对象
cout << endl;
return 0;
}
总结:for_each 在实际开发中是最常用的遍历算法,需要熟练掌握
功能描述:
函数原型:
示例:
#include
#include
#include
using namespace std;
//仿函数
class Transform
{
public:
int operator()(int val) {//搬运过程中需要把元素返回回去,所以返回类型为搬运的元素类型
return val;
}
};
class MyPrint
{
public:
void operator()(int val) {
cout << val << " ";
}
};
int main() {
vector<int> v;
for (int i = 0; i < 10; i++) {
v.push_back(i);
}
vector<int> vTarget;
vTarget.resize(v.size());//目标容器需要提前开辟预定大小的空间
transform(v.begin(), v.end(), vTarget.begin(), Transform());
for_each(vTarget.begin(), vTarget.end(), MyPrint());
cout << endl;
return 0;
}
总结:
学习目标:
算法简介:
功能描述:
函数原型:
示例:
#include
#include
#include
using namespace std;
class Person {
public:
Person(string name, int age) {
this->name = name;
this->age = age;
}
bool operator==(const Person& p) {
if (this->name == p.name && this->age == p.age) {
return true;
} else {
return false;
}
}
public:
string name;
int age;
};
int main() {
//查找内置数据类型
vector<int> v;
for (int i = 0; i < 10; i++) {
v.push_back(i);
}
vector<int>::iterator it = find(v.begin(), v.end(), 5);
if (it == v.end()) {
cout << "没有找到!" << endl;
}
else {
cout << "找到:" << *it << endl;
}
//查找自定义数据类型
vector<Person> vp;
Person p1("aaa", 10);
Person p2("bbb", 20);
Person p3("ccc", 30);
Person p4("ddd", 40);
vp.push_back(p1);
vp.push_back(p2);
vp.push_back(p3);
vp.push_back(p4);
Person pp("bbb", 20);
//当使用 find 查找自定义数据类型时,要在自定义数据类型内部重载 == 运算符,让底层 find 知道如何对比自定义数据类型
vector<Person>::iterator it = find(vp.begin(), vp.end(), pp);
if (it == vp.end()) {
cout << "没有找到" << endl;
}
else {
cout << "找到:" << it->name << " " << it.age << endl;
}
return 0;
}
总结:
功能描述:
函数原型:
示例:
#include
#include
#include
using namespace std;
//内置数据类型仿函数
class GreaterFive
{
public:
bool operator()(int val) {
return val > 5;
}
};
class Person {
public:
Person(string name, int age) {
this->name = name;
this->age = age;
}
bool operator==(const Person& p) {
if (this->name == p.name && this->age == p.age) {
return true;
} else {
return false;
}
}
public:
string name;
int age;
};
//自定义数据类型仿函数
class Greater20
{
public:
bool operator()(Person& p) {
return p.age > 20;
}
};
int main() {
//查找内置数据类型
vector<int> v;
for (int i = 0; i < 10; i++) {
v.push_back(i);
}
vector<int>::iterator it = find_if(v.begin(), v.end(), GreaterFive());
if (it == v.end()) {
cout << "没有找到!" << endl;
}
else {
cout << "找到大于 5 的数字为:" << *it << endl;
}
//查找自定义数据类型
vector<Person> vp;
Person p1("aaa", 10);
Person p2("bbb", 20);
Person p3("ccc", 30);
Person p4("ddd", 40);
vp.push_back(p1);
vp.push_back(p2);
vp.push_back(p3);
vp.push_back(p4);
Person pp("bbb", 20);
vector<Person>::iterator it = find(vp.begin(), vp.end(), Greater20());
if (it == vp.end()) {
cout << "没有找到" << endl;
}
else {
cout << "找到:" << it->name << " " << it.age << endl;
}
return 0;
}
功能描述:
函数原型:
示例:
#include
#include
#include
using namespace std;
int main() {
//查找内置数据类型
vector<int> v;
v.push_back(0);
v.push_back(2);
v.push_back(0);
v.push_back(3);
v.push_back(1);
v.push_back(4);
v.push_back(3);
v.push_back(3);
vector<int>::iterator it = adjacent_find(v.begin(), v.end());
if (it == v.end()) {
cout << "没有找到相邻重复元素!" << endl;
}
else {
cout << "找到相邻重复元素:" << *it << endl;
}
return 0;
}
功能描述:
函数原型:
注意:容器必须是有序的序列,在无序序列中不可用。(如果是无序的序列,结果未知!)
示例:
#include
#include
#include
using namespace std;
int main() {
//查找内置数据类型
vector<int> v;
for (int i = 0; i < 10; i++) {
v.push_back(i);
}
bool ret= binary_search(v.begin(), v.end(), 9);
if (ret) {
cout << "找到了元素!" << endl;
}
else {
cout << "未找到!" << endl;
}
return 0;
}
总结:虽然二分查找法查找效率很高,但是值得注意的是查找的容器中元素必须是有序序列。
功能描述:
函数原型:
示例:
#include
#include
#include
using namespace std;
class Person {
public:
Person(string name, int age) {
this->name = name;
this->age = age;
}
bool operator==(const Person& p) {//底层要求必须加上 const,否则会报错
if (this->age == p.age) {
return true;
} else {
return false;
}
}
public:
string name;
int age;
};
int main() {
//统计内置数据类型
vector<int> v;
v.push_back(0);
v.push_back(2);
v.push_back(0);
v.push_back(3);
v.push_back(1);
v.push_back(4);
v.push_back(3);
v.push_back(3);
int num = count(v.begin(), v.end(), 3);
cout << "3 的元素个数为:" << num << endl;
//统计自定义数据类型
vector<Person> vp;
Person p1("aaa", 10);
Person p2("bbb", 20);
Person p3("ccc", 20);
Person p4("ddd", 40);
vp.push_back(p1);
vp.push_back(p2);
vp.push_back(p3);
vp.push_back(p4);
Person pp("eee", 20);
//当使用 count 查找自定义数据类型时,要在自定义数据类型内部重载 == 运算符,让底层 count 知道如何对比自定义数据类型
num = count(vp.begin(), vp.end(), pp);
cout << "和 eee 的年龄相同 的元素个数为:" << num << endl;
return 0;
}
总结:统计自定义数据类型的时候,需要配合重载 operator==
功能描述:
函数原型:
示例:
#include
#include
#include
using namespace std;
class Greater2
{
public:
bool operator()(int val) {
return val > 2;
}
};
class Person {
public:
Person(string name, int age) {
this->name = name;
this->age = age;
}
bool operator==(const Person& p) {//底层要求必须加上 const,否则会报错
if (this->age == p.age) {
return true;
} else {
return false;
}
}
public:
string name;
int age;
};
class AgeGreater20
{
public:
bool operator()(const Person& p) {
return p.age >= 20;
}
};
int main() {
//统计内置数据类型
vector<int> v;
v.push_back(0);
v.push_back(2);
v.push_back(0);
v.push_back(3);
v.push_back(1);
v.push_back(4);
v.push_back(3);
v.push_back(3);
int num = count_if(v.begin(), v.end(), Greater2());
cout << "大于 2 的元素个数为:" << num << endl;
//统计自定义数据类型
vector<Person> vp;
Person p1("aaa", 10);
Person p2("bbb", 20);
Person p3("ccc", 20);
Person p4("ddd", 40);
vp.push_back(p1);
vp.push_back(p2);
vp.push_back(p3);
vp.push_back(p4);
num = count(vp.begin(), vp.end(), AgeGreater20());
cout << "age >= 20 的元素个数为:" << num << endl;
return 0;
}
学习目标:
算法简介:
功能描述:
函数原型:
示例:
#include
#include
#include
#include
using namespace std;
class Greater2
{
public:
bool operator()(int val) {
return val > 2;
}
};
//普通函数遍历
void myPrint(int val) {
cout << val << " ";
}
int main() {
vector<int> v;
v.push_back(0);
v.push_back(2);
v.push_back(3);
v.push_back(1);
v.push_back(4);
sort(v.begin(), v.end());//1.默认升序排列
for_each(v.begin(), v.end(), myPrint);
cout << endl;
sort(v.begin(), v.end(), greater<int>());//2.使用内建函数对象降序排列
for_each(v.begin(), v.end(), myPrint);
cout << endl;
return 0;
}
总结:sort 属于开发中最常用的算法之一,需熟练掌握
功能描述:
函数原型:
示例:
#include
#include
#include
#include
using namespace std;
//普通函数遍历
void myPrint(int val) {
cout << val << " ";
}
int main() {
vector<int> v;
for (int i = 0 ; i < 10; i++) {
v.push_back(i);
}
//1.利用洗牌算法打乱顺序,但每次打乱顺序是一样的
//random_shuffle(v.begin(), v.end());
//2.利用洗牌算法打乱顺序,加入随机种子真实打乱
srand((unsigned int)time(NULL));
random_shuffle(v.begin(), v.end());
for_each(v.begin(), v.end(), myPrint);
cout << endl;
return 0;
}
总结:random_shuffle 洗牌算法比较实用,使用时记得加随机数种子
功能描述:
函数原型:
注意:默认情况下两个容器必须都是升序序列,合并后依然是一个升序序列;如果都是降序序列的话,需要在参数列表中第 6 个形参的位置填写 谓词参数 指定规则。
示例:
#include
#include
#include
using namespace std;
//普通函数遍历
void myPrint(int val) {
cout << val << " ";
}
int main() {
vector<int> v1;
for (int i = 0 ; i < 10; i++) {
v1.push_back(i);
}
vector<int> v2;
for (int i = 0 ; i < 10; i++) {
v2.push_back(i+3);
}
vector<int> vTarget;
vTarget.resize(v1.size() + v2.size());//提前给目标容器分配空间
merge(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());
for_each(vTarget.begin(), vTarget.end(), myPrint);
cout << endl;
return 0;
}
总结:
功能描述:
函数原型:
示例:
#include
#include
#include
using namespace std;
//普通函数遍历
void myPrint(int val) {
cout << val << " ";
}
int main() {
vector<int> v;
v.push_back(10);
v.push_back(30);
v.push_back(50);
v.push_back(20);
v.push_back(40);
cout << "反转前" << endl;
for_each(v.begin(), v.end(), myPrint);
cout << endl;
cout << "反转后" << endl;
reverse(v.begin(), v.end());//1.
for_each(v.begin(), v.end(), myPrint);
cout << endl;
return 0;
}
总结: