【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);
目录
相关文章
|
6天前
|
算法 C语言 C++
【c++丨STL】list的使用
本文介绍了STL容器`list`的使用方法及其主要功能。`list`是一种双向链表结构,适用于频繁的插入和删除操作。文章详细讲解了`list`的构造函数、析构函数、赋值重载、迭代器、容量接口、元素访问接口、增删查改操作以及一些特有的操作接口如`splice`、`remove_if`、`unique`、`merge`、`sort`和`reverse`。通过示例代码,读者可以更好地理解如何使用这些接口。最后,作者总结了`list`的特点和适用场景,并预告了后续关于`list`模拟实现的文章。
22 7
|
23天前
|
存储 编译器 C语言
【c++丨STL】vector的使用
本文介绍了C++ STL中的`vector`容器,包括其基本概念、主要接口及其使用方法。`vector`是一种动态数组,能够根据需要自动调整大小,提供了丰富的操作接口,如增删查改等。文章详细解释了`vector`的构造函数、赋值运算符、容量接口、迭代器接口、元素访问接口以及一些常用的增删操作函数。最后,还展示了如何使用`vector`创建字符串数组,体现了`vector`在实际编程中的灵活性和实用性。
48 4
|
24天前
|
C语言 C++ 容器
【c++丨STL】string模拟实现(附源码)
本文详细介绍了如何模拟实现C++ STL中的`string`类,包括其构造函数、拷贝构造、赋值重载、析构函数等基本功能,以及字符串的插入、删除、查找、比较等操作。文章还展示了如何实现输入输出流操作符,使自定义的`string`类能够方便地与`cin`和`cout`配合使用。通过这些实现,读者不仅能加深对`string`类的理解,还能提升对C++编程技巧的掌握。
50 5
|
24天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
38 2
|
1月前
|
存储 算法 Linux
【c++】STL简介
本文介绍了C++标准模板库(STL)的基本概念、组成部分及学习方法,强调了STL在提高编程效率和代码复用性方面的重要性。文章详细解析了STL的六大组件:容器、算法、迭代器、仿函数、配接器和空间配置器,并提出了学习STL的三个层次,旨在帮助读者深入理解和掌握STL。
47 0
|
9天前
|
存储 编译器 C语言
【c++丨STL】vector模拟实现
本文深入探讨了 `vector` 的底层实现原理,并尝试模拟实现其结构及常用接口。首先介绍了 `vector` 的底层是动态顺序表,使用三个迭代器(指针)来维护数组,分别为 `start`、`finish` 和 `end_of_storage`。接着详细讲解了如何实现 `vector` 的各种构造函数、析构函数、容量接口、迭代器接口、插入和删除操作等。最后提供了完整的模拟实现代码,帮助读者更好地理解和掌握 `vector` 的实现细节。
18 0
|
2月前
|
存储 程序员 C++
C++常用基础知识—STL库(2)
C++常用基础知识—STL库(2)
79 5
|
16天前
|
算法
基于WOA算法的SVDD参数寻优matlab仿真
该程序利用鲸鱼优化算法(WOA)对支持向量数据描述(SVDD)模型的参数进行优化,以提高数据分类的准确性。通过MATLAB2022A实现,展示了不同信噪比(SNR)下模型的分类误差。WOA通过模拟鲸鱼捕食行为,动态调整SVDD参数,如惩罚因子C和核函数参数γ,以寻找最优参数组合,增强模型的鲁棒性和泛化能力。
|
22天前
|
机器学习/深度学习 算法 Serverless
基于WOA-SVM的乳腺癌数据分类识别算法matlab仿真,对比BP神经网络和SVM
本项目利用鲸鱼优化算法(WOA)优化支持向量机(SVM)参数,针对乳腺癌早期诊断问题,通过MATLAB 2022a实现。核心代码包括参数初始化、目标函数计算、位置更新等步骤,并附有详细中文注释及操作视频。实验结果显示,WOA-SVM在提高分类精度和泛化能力方面表现出色,为乳腺癌的早期诊断提供了有效的技术支持。
|
2天前
|
供应链 算法 调度
排队算法的matlab仿真,带GUI界面
该程序使用MATLAB 2022A版本实现排队算法的仿真,并带有GUI界面。程序支持单队列单服务台、单队列多服务台和多队列多服务台三种排队方式。核心函数`func_mms2`通过模拟到达时间和服务时间,计算阻塞率和利用率。排队论研究系统中顾客和服务台的交互行为,广泛应用于通信网络、生产调度和服务行业等领域,旨在优化系统性能,减少等待时间,提高资源利用率。
下一篇
DataWorks