• 【C++】常用拷贝和替换算法


    0.前言

    在这里插入图片描述

    1.copy

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

    #include 
    using namespace std;
    
    
    // 常用拷贝算法 copy
    #include
    #include
    
    void myPrint(int val)
    {
    	cout << val << " ";
    }
    
    void test01()
    {
    	vector<int>v;
    	for (int i = 0; i < 10; i++)
    	{
    		v.push_back(i);
    	}
    
    	vector<int>v2;
    	v2.resize(v.size());
    	copy(v.begin(), v.end(), v2.begin());
    
    	for_each(v2.begin(), v2.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

    在这里插入图片描述

    2.replace

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

    #include 
    using namespace std;
    
    
    // 常用替换算法 replace
    #include
    #include
    
    class myPrint
    {
    public:
    	void operator()(int val)
    	{
    		cout << val << " ";
    	}
    };
    
    void myPrint2(int val)
    {
    	cout << val << " ";
    }
    
    void test01()
    {
    	vector<int>v;
    	
    	v.push_back(10);
    	v.push_back(20);
    	v.push_back(30);
    	v.push_back(20);
    
    	cout << "替换前:" << endl;
    	for_each(v.begin(), v.end(), myPrint());
    	cout << endl;
    
    	//将 20 替换为 2000
    	replace(v.begin(), v.end(), 20, 2000);
    
    	for_each(v.begin(), v.end(), myPrint2);
    	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

    在这里插入图片描述

    3.replace_if

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

    #include 
    using namespace std;
    
    
    // 常用替换算法 replace_if
    #include
    #include
    
    class myPrint
    {
    public:
    	void operator()(int val)
    	{
    		cout << val << " ";
    	}
    };
    
    bool Greater20(int val)
    {
    	return val > 20;
    }
    
    void test01()
    {
    	vector<int>v;
    	v.push_back(10);
    	v.push_back(20);
    	v.push_back(30);
    
    	cout << "替换前:" << endl;
    	for_each(v.begin(), v.end(), myPrint());
    	cout << endl;
    
    	replace_if(v.begin(), v.end(), Greater20, 3000);
    	for_each(v.begin(), v.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

    在这里插入图片描述

    4.swap

    在这里插入图片描述

    在这里插入图片描述

    #include 
    using namespace std;
    
    
    // 常用替换算法 swap
    #include
    #include
    
    void myPrint(int val)
    {
    	cout << val << " ";
    }
    
    void test01()
    {
    	vector<int>v1;
    	vector<int>v2;
    
    	for (int i = 0; i < 10; i++)
    	{
    		v1.push_back(i);
    		v2.push_back(i + 100);
    	}
    
    	cout << "交换前:" << endl;
    	for_each(v1.begin(), v1.end(), myPrint);
    	cout << endl;
    	for_each(v2.begin(), v2.end(), myPrint);
    	cout << endl;
    
    	swap(v1, v2);
    
    	cout << "交换后:" << endl;
    	for_each(v1.begin(), v1.end(), myPrint);
    	cout << endl;
    	for_each(v2.begin(), v2.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

    在这里插入图片描述

  • 相关阅读:
    23.1 微服务理论基础
    JavaScript高级,ES6 笔记 第三天
    vue - vue基础/vue核心内容
    C# Timer定时器
    【项目经验】elementui抽屉(从下到上方向)实现向上拉伸
    登录页面怎么做渗透
    关于图像处理和Python深度学习的教程:第二部分
    Debezium日常分享系列之:Debezium 2.3.0.Final发布
    Cinema 4D 2024 v2024.0.2
    Springetway 如何解决跨域的
  • 原文地址:https://blog.csdn.net/m0_48808835/article/details/132781866