【C++知识点】STL 常用算法总结(一)

简介: 【C++知识点】STL 常用算法总结(一)

STL常用算法

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


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

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

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

遍历算法

for_each

功能描述:实现遍历容器

函数原型:

//遍历算法遍历容器元素
//beg 开始迭代器
//end 结束迭代器
//_func 函数或者函数对象
for_each(iterator beg, iterator end, _func);

案例:

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用遍历算法for_each
//普通函数
void print01(int val){
    cout << val << " ";
}
//仿函数
class print02{
public:
    void operator()(int val)
    {
        cout << val << " ";
    }
};
void test01(){
    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;
}
int main() {
    test01();
    return 0;
}
transform

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

函数原型:

//beg1 源容器开始迭代器
//end1 源容器结束迭代器
//beg2 目标容器开始迭代器
//_func 函数或者函数对象
transform(iterator beg1, iterator end1, iterator beg2, _func);

案例:

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用遍历算法transform
class Transform
{
public:
    int operator()(int v)
    {
        return v + 100;
    }
};
class Myprint
{
public:
    void operator()(int val)
    {
        cout << val << " ";
    }
};
void test01()
{
    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;
}
int main() {
    test01();
    return 0;
}

查找算法

find

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

函数原型:

//按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置
//beg 开始迭代器
//end 结束迭代器
//value 查找的元素
find(iterator beg, iterator end, value);

案例:

vector<int> v;
for (int i = 0; i < 10;i++){
    v.push_back(i);
}
//查找容器中是否有9这个元素
vector<int>::iterator it =find(v.begin(), v.end(), 9);
if(it == v.end()){
    cout << "not found " << endl;
}
else
{
    cout << " found: " << *it << endl;
}
find_if

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

函数原型:

//按值查找元素,返回指定位置迭代器,找不到返回结束迭代器位置
//beg 开始迭代器
//end 结束迭代器
//_Pred 函数或者谓词(返回bool类型的仿函数)
find_if(iterator beg, iterator end, _Pred);

案例:

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<string>
//常用查找算法
//find_if
class GreaterFive
{
public:
    bool operator()(int val){
        return val == 5;
    }
};
void test01()
{
    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 << "not found " << endl;
    }
    else
    {
        cout << " found: " << *it << endl;
    }
}
int main() {
    test01();
    return 0;
}
adjacent_find

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

函数原型:

//查找相邻重复元素,返回相邻元素的第一个位置的迭代器
//beg 开始迭代器
//end 结束迭代器
adjacent_find(iterator beg, iterator end);

案例:

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用查找算法
//adjacent_find
void test01()
{
    vector<int> v={0,2,2,1,3,4,4};
    vector<int>::iterator pos = adjacent_find(v.begin(), v.end());
    if (pos == v.end())
    {
        cout << "not found " << endl;
    }
    else
    {
        cout << "found : " << *pos << endl;
    }
}
int main() {
    test01();
    return 0;
}
binary_search

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

函数原型:

//查找指定的元素,查到返回true 否则false
//注意:在无序序列中不可用
//beg 开始迭代器
//end 结束迭代器
//value 查找的元素
bool binary_search(iterator beg, iterator end, value);

案例:

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用查找算法binary_search
void test01()
{
    vector<int> v;
    for (int i = 0; i < 10; i++)
    {
        v.push_back(i);
    }
    // v.push_back(2);//如果是无序序列,结果未知
    //查找容器中是否有9这个元素
    //注意:容器必须是有序的序列
    bool ret = binary_search(v.begin(), v.end(), 9);
    if (ret)
    {
        cout << "found" << endl;
    }
    else
    {
        cout << "not found" << endl;
    }
}
int main() {
    test01();
    return 0;
}
count

功能描述:统计元素个数

函数原型:

//统计元素出现次数
//beg 开始迭代器
//end 结束迭代器
//value 统计的元素
count(iterator beg,iterator end, value);
count_if

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

函数原型:

//按条件统计元素出现次数
//beg 开始迭代器
//end 结束迭代器
//_Pred 谓词
count_if(iterator beg, iterator end, _Pred);

案例:

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<string>
//常用查找算法
//count_if
class Greater10
{
public:
    bool operator()(int val)
    {
        return val > 10;
    }
};
int main()
{
    vector<int> v;
    v.push_back(10);
    v.push_back(40);
    v.push_back(30);
    v.push_back(40);
    v.push_back(20);
    v.push_back(40);
    //统计容器中大于10元素有几个
    int num = count_if(v.begin(), v.end(), Greater10());
    cout << "greater than 10's num is :" << num << endl;
    return 0;
}

排序算法

sort

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

函数原型:

//按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置
//beg 开始迭代器
//end 结束迭代器
//_Pred 谓词
sort(iterator beg, iterator end, _Pred);

案例:

vector<int> v={10,30,20,15,33}
//升序
sort(v.begin(), v.end());
//降序
sort(v.begin(), v.end(), greater<int>())
random_shuffle

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

函数原型:

//指定范围内的元素随机调整次序
//beg 开始迭代器
//end 结束迭代器
random_shuffle(iterator beg, iterator end);

案例:

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<ctime>
//常用排序算法random_shuffle
void myPrint(int val)
{
    cout << val << " ";
}
void test01()
{
    srand((unsigned int)time(NULL));
    vector<int> v={1,2,3,4,5};
    //利用洗牌打乱顺序
    random_shuffle(v.begin(), v.end());
    for_each(v.begin(), v.end(), myPrint);
    cout << endl;
}
int main() 
{
    test01();
    return 0;
}
merge

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

函数原型:

//容器元素合并,并存储到另一个容器中
//注意:两个容器必须是有序的
//beg1 容器1开始迭代器
//end1 容器1结束迭代器
//beg2 容器2开始迭代器
//end2 容器2结束迭代器
//dest 目标容器开始迭代器
merge(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest);

案例:

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用排序算法merge
void myPrint(int val)
{
    cout << val << " ";
}
void test01()
{
    vector<int> v1={1,3,5,9,11};
    vector<int> v2={2,4,8,12};
    //目标容器
    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;
}
int main() 
{
    test01();
    return 0;
}
reverse

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

函数原型:

//反转指定范围的元素
//beg 开始迭代器
//end 结束迭代器
reverse(iterator beg, iterator end);
目录
相关文章
|
1月前
|
存储 程序员 C++
C++常用基础知识—STL库(2)
C++常用基础知识—STL库(2)
68 5
|
1月前
|
存储 自然语言处理 程序员
C++常用基础知识—STL库(1)
C++常用基础知识—STL库(1)
52 1
|
1月前
|
算法 安全 Linux
【C++STL简介】——我与C++的不解之缘(八)
【C++STL简介】——我与C++的不解之缘(八)
|
1月前
|
算法 数据处理 C++
c++ STL划分算法;partition()、partition_copy()、stable_partition()、partition_point()详解
这些算法是C++ STL中处理和组织数据的强大工具,能够高效地实现复杂的数据处理逻辑。理解它们的差异和应用场景,将有助于编写更加高效和清晰的C++代码。
22 0
|
1月前
|
存储 算法
动态规划算法学习一:DP的重要知识点、矩阵连乘算法
这篇文章是关于动态规划算法中矩阵连乘问题的详解,包括问题描述、最优子结构、重叠子问题、递归方法、备忘录方法和动态规划算法设计的步骤。
98 0
|
1月前
|
存储 算法 程序员
迪杰斯特拉(Dijkstra)算法(C/C++)
迪杰斯特拉(Dijkstra)算法(C/C++)
|
1月前
|
人工智能 算法 Java
【搜索算法】数字游戏(C/C++)
【搜索算法】数字游戏(C/C++)
|
24天前
|
算法 安全 数据安全/隐私保护
基于game-based算法的动态频谱访问matlab仿真
本算法展示了在认知无线电网络中,通过游戏理论优化动态频谱访问,提高频谱利用率和物理层安全性。程序运行效果包括负载因子、传输功率、信噪比对用户效用和保密率的影响分析。软件版本:Matlab 2022a。完整代码包含详细中文注释和操作视频。
|
9天前
|
算法 数据挖掘 数据安全/隐私保护
基于FCM模糊聚类算法的图像分割matlab仿真
本项目展示了基于模糊C均值(FCM)算法的图像分割技术。算法运行效果良好,无水印。使用MATLAB 2022a开发,提供完整代码及中文注释,附带操作步骤视频。FCM算法通过隶属度矩阵和聚类中心矩阵实现图像分割,适用于灰度和彩色图像,广泛应用于医学影像、遥感图像等领域。
|
10天前
|
算法 调度
基于遗传模拟退火混合优化算法的车间作业最优调度matlab仿真,输出甘特图
车间作业调度问题(JSSP)通过遗传算法(GA)和模拟退火算法(SA)优化多个作业在并行工作中心上的加工顺序和时间,以最小化总完成时间和机器闲置时间。MATLAB2022a版本运行测试,展示了有效性和可行性。核心程序采用作业列表表示法,结合遗传操作和模拟退火过程,提高算法性能。