• 【C++】STL-常用算法-常用遍历算法


    0.前言

    在这里插入图片描述

    1.for_each

    #include 
    using namespace std;
    
    // 常用遍历算法 for_each
    #include
    #include
    
    //普通函数
    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();
    	cout << "------------------------" << endl;
    	//test02();
    	//cout << "------------------------" << endl << endl;
    	//test03();
    
    	//**************************************
    	system("pause");
    	return 0;
    } 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50

    在这里插入图片描述

    2.transform

    在这里插入图片描述
    在这里插入图片描述

    #include 
    using namespace std;
    
    // 常用遍历算法 transform
    #include
    #include
    
    //仿函数
    class Transform
    {
    public:
    	int operator()(int val)
    	{
    		return val + 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()); // 数据都加100,根据仿函数定义
    
    	for_each(vTarget.begin(), vTarget.end(), MyPrint());
    	cout << endl;
    }
    
    int main()
    {
    	test01();
    	cout << "------------------------" << endl;
    	//test02();
    	//cout << "------------------------" << endl << endl;
    	//test03();
    
    	//**************************************
    	system("pause");
    	return 0;
    } 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57

    在这里插入图片描述

  • 相关阅读:
    将Pytorch搭建的ViT模型转为onnx模型
    三年半经验,成功拿下字节阿里网易offer
    MySQL-索引详解
    SpringCloud 2022有哪些变化
    2024年华为HCIA-DATACOM新增题库(H12-811)
    YOLOv5 模型结构及代码详细讲解(一)
    Symbol基本数据类型
    网络工程师知识点
    四步快速配置一个简单高效的文本生成图像基准模型 T2I baseline
    测试与爬虫—抓包神器之Charles
  • 原文地址:https://blog.csdn.net/m0_48808835/article/details/132722388