STL-常用算法
STL-常用算法
概述:
- 算法主要是有头文件
#include <algorithm> #include <functional> #include <numeric>
组成。 #include <algorithm>
是所有STL头文件中最大的一个,范围涉及到计较、交换、查找、遍历、复制、修改等等#include <numeric>
体积很小,只包括几个在序列上面进行简单数学运算的模板函数#include <functional>
定义了一些模板类,用以声明函数对象
1.常用遍历算法
简介:
for_each
//遍历容器transform
//搬运容器到另一个容器
1.1for_each
功能描述:
- 实现遍历容器
函数原型:
/*
遍历算法,遍历容器容器元素
beg开始迭代器
end结束迭代器
_func函数或者函数对象(仿函数)
*/
for_each(iterator beg, iterator end, _func);
示例:
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
//普通函数
void printfunc(int val)
{
cout << val << " ";
}
//仿函数
class printfunction
{
public:
void operator()(int val)
{
cout << val << " ";
}
};
int main(int argc, char **argv)
{
vector<int> v;
for (int i = 0; i < 10; i++)
{
v.push_back(i);
}
for_each(v.begin(), v.end(), printfunc);
cout << endl;
for_each(v.begin(), v.end(), printfunction());
cout << endl;
return 0;
}
2.transform
功能描述:
- 搬运容器到另一个容器
函数原型:
/*
beg1 源容器开始迭代器
end1 源容器结束迭代器
beg1 目标容器开始迭代器
_func函数或者函数对象(仿函数)
*/
transform(iterator beg1, iterator end1, iterator beg2, _func);
示例:
#include <algorithm>
#include <functional>
#include <iostream>
#include <vector>
using namespace std;
int main(int argc, char **argv)
{
vector<bool> v;
v.push_back(true);
v.push_back(false);
v.push_back(true);
v.push_back(true);
v.push_back(false);
v.push_back(false);
for (vector<bool>::iterator it = v.begin(); it != v.end(); it++)
{
cout << *it << " ";
}
cout << endl;
//利用逻辑非将容器v搬运到容器v2中,并执行取反操作
vector<bool> v2;
v2.resize(v.size());
transform(v.begin(), v.end(), v2.begin(), logical_not<bool>());
cout << endl;
for (vector<bool>::iterator it = v2.begin(); it != v2.end(); it++)
{
cout << *it << " ";
}
cout << endl;
return 0;
}
2.常用查找算法
简介:
find//查找元素
find_if//按条件查找元素
adjacent_find//查找相邻重复元素
binary_search//二分查找法
count//统计元素个数
count_if//按条件统计元素个数
1.find
功能描述:
- 查找指定元素,找到返回指定元素的迭代器,找不到返回结束迭代器end()
函数原型:
find(iterator beg, iterator end, value);
示例:
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
class Person
{
public:
Person(string name, int age)
{
this->m_Name = name;
this->m_Age = age;
}
//重载==,使find知道如何对比person数据类型
bool operator==(const Person &p)
{
if (this->m_Name == p.m_Name && this->m_Age == p.m_Age)
{
return true;
}
else
{
return false;
}
}
string m_Name;
int m_Age;
};
int main(int argc, char **argv)
{
vector<int> v;
for (int i = 0; i < 10; i++)
{
v.push_back(i);
}
//查找容器中有没有5
vector<int>::iterator it = find(v.begin(), v.end(), 5);
if (it == v.end())
{
cout << "未找到5" << endl;
}
else
{
cout << "找到了" << *it << endl;
}
vector<Person> v2;
Person p1("a", 10);
Person p2("b", 20);
Person p3("c", 30);
Person p4("d", 40);
v2.push_back(p1);
v2.push_back(p2);
v2.push_back(p3);
v2.push_back(p4);
Person p5("a", 10);
Person p6("bbb", 20);
//查找容器中有没有和p5一样的
vector<Person>::iterator it2 = find(v2.begin(), v2.end(), p5);
if (it2 == v2.end())
{
cout << "未找到和p5一样的" << endl;
}
else
{
cout << "找到了和p5一样的,姓名:" << it2->m_Name << ",年龄:" << it2->m_Age << endl;
}
//查找容器中有没有和p6一样的
it2 = find(v2.begin(), v2.end(), p6);
if (it2 == v2.end())
{
cout << "未找到和p6一样的" << endl;
}
else
{
cout << "找到了和p6一样的,姓名:" << it2->m_Name << ",年龄:" << it2->m_Age << endl;
}
return 0;
}
2.find_if
功能描述:
- 按条件查找指定元素,找到返回指定元素的迭代器,找不到返回结束迭代器end()
函数原型:
find_if(iterator beg, iterator end, _Pred);
示例:
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
class Person
{
public:
Person(string name, int age)
{
this->m_Name = name;
this->m_Age = age;
}
string m_Name;
int m_Age;
};
class GreaterFive
{
public:
bool operator()(int val)
{
return val > 5;
}
};
class Greater20
{
public:
bool operator()(Person &p)
{
return p.m_Age > 20;
}
};
int main(int argc, char **argv)
{
vector<int> v;
for (int i = 0; i < 10; i++)
{
v.push_back(i);
}
//查找容器中有没有大于5的数字
vector<int>::iterator it = find_if(v.begin(), v.end(), GreaterFive());
if (it == v.end())
{
cout << "未找到" << endl;
}
else
{
cout << "找到了大于5的数字为:" << *it << endl;
}
vector<Person> v2;
Person p1("a", 10);
Person p2("b", 20);
Person p3("c", 30);
Person p4("d", 40);
v2.push_back(p1);
v2.push_back(p2);
v2.push_back(p3);
v2.push_back(p4);
//找年龄大于20的
vector<Person>::iterator it2 = find_if(v2.begin(), v2.end(), Greater20());
if (it2 == v2.end())
{
cout << "未找到" << endl;
}
else
{
cout << "找到了,姓名:" << it2->m_Name << ",年龄:" << it2->m_Age << endl;
}
return 0;
}