编程语言
首页 > 编程语言> > 替换算法——replace_if

替换算法——replace_if

作者:互联网

替换算法——replace_if

功能描述:

函数原型:

测试代码

#include <iostream>

using namespace std;

#include <algorithm>
#include <vector>

class myPrint
{
public:
	void operator()(int val)
	{
		cout << val << " ";
	}
};

class ReplaceGreater30
{
public:
	bool operator()(int val)
	{
		return val >= 30;
	}

};

void test01()
{
	vector<int> v;
	v.push_back(20);
	v.push_back(30);
	v.push_back(20);
	v.push_back(40);
	v.push_back(50);
	v.push_back(10);
	v.push_back(20);

	cout << "替换前:" << endl;
	for_each(v.begin(), v.end(), myPrint());
	cout << endl;

	//将容器中大于等于的30 替换成 3000
	cout << "替换后:" << endl;
	replace_if(v.begin(), v.end(), ReplaceGreater30(), 3000);
	for_each(v.begin(), v.end(), myPrint());
	cout << endl;
}

int main() {

	test01();

	system("pause");

	return 0;
}

测试结果

在这里插入图片描述

总结

标签:20,元素,back,replace,push,include,替换算法
来源: https://blog.csdn.net/zxy131072/article/details/94884865