c++STL常用算法之拷贝和替换算法——全面总结(附案例解析)(二十五)

这里有C++STL——全面总结详细教程(附案例解析)(持续更新中)


目录

常用拷贝和替换算法

copy

replace

replace_if

swap

常用算术生成算法

accumulate

fill


常用拷贝和替换算法

学习目标:

  • 掌握常用的拷贝和替换算法

算法简介:

  • copy // 容器内指定范围的元素拷贝到另一容器中
  • replace // 将容器内指定范围的旧元素修改为新元素
  • replace_if // 容器内指定范围满足条件的元素替换为新元素
  • swap // 互换两个容器的元素

copy

功能描述:

  • 容器内指定范围的元素拷贝到另一容器中

函数原型:

  • copy(iterator beg, iterator end, iterator dest);
  • // 按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置
  • // beg 开始迭代器
  • // end 结束迭代器
  • // dest 目标起始迭代器
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

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

void test01() {
	vector<int>v;
	for (int i = 0; i < 10; i++)
	{
		int num;
		cin >> num;
		v.push_back(num);
	}
	sort(v.begin(), v.end());
	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();

	system("pause");
	return 0;
}

总结:利用copy算法在拷贝时,目标容器记得提前开辟空间。

replace

功能描述:

  • 将容器内指定范围的旧元素修改为新元素

函数原型:

  • replace(iterator beg, iterator end, oldvalue, newvalue);
  • // 将区间内旧元素 替换成 新元素
  • // beg 开始迭代器
  • // end 结束迭代器
  • // oldvalue 旧元素
  • // newvalue 新元素
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

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

void test01() {
	vector<int>v;
	int num;
	while (cin >> num) {
		v.push_back(num);
	}
	
	replace(v.begin(), v.end(), num, 2000);
	sort(v.begin(), v.end());
	for_each(v.begin(), v.end(), MyPrint());
	cout << endl;
}
int main() {
	test01();

	system("pause");
	return 0;
}

总结:replace会替换区间内满足条件的元素。

replace_if

功能描述:

  • 将区间内满足条件的元素,替换成指定元素

函数原型:

  • replace_if(iterator beg, iterator end, _pred, newvalue);
  • // 按条件替换元素,满足条件的替换成指定元素
  • // beg 开始迭代器
  • // end 结束迭代器
  • // _pred 谓词
  • // newvalue 替换的新元素
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

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

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

void test01() {
	vector<int>v;
	int num;
	while (cin >> num) {
		v.push_back(num);
	}
	
	replace_if(v.begin(), v.end(), ReplaceGreater30(), 2000);
	sort(v.begin(), v.end());
	for_each(v.begin(), v.end(), MyPrint());
	cout << endl;
}
int main() {
	test01();

	system("pause");
	return 0;
}

总结:replace_if按条件查找,可以利用仿函数灵活筛选满足的条件。

swap

功能描述:

  • 互换两个容器的元素

函数原型:

  • swap(container c1, container c2);
  • // 互换两个容器的元素
  • // c1容器1
  • // c2容器2
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

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

void test01() {
	vector<int>v1;
	vector<int>v2;
	int num;
	while (cin >> num) {
		v1.push_back(num);
		v2.push_back(num + 1000);
	}
	
	cout << "交换前: " << endl;
	for_each(v1.begin(), v1.end(), myPrint());
	cout << endl;
	for_each(v2.begin(), v2.end(), myPrint());
	cout << endl;

	cout << "交换后: " << endl;
	swap(v1, v2);
	for_each(v1.begin(), v1.end(), myPrint());
	cout << endl;
	for_each(v2.begin(), v2.end(), myPrint());
	cout << endl;
}
int main() {
	test01();

	system("pause");
	return 0;
}

总结:swap交换容器时,注意交换的容器要同种类型。

常用算术生成算法

学习目标:

  • 掌握常用的算术生成算法

注意:

  • 算术生成算法属于小型算法,使用时包含的头文件为 #include <numeric>

算法简介:

  • accumulate // 计算容器元素累计总和
  • fill // 向容器中添加元素

accumulate

功能描述:

  • 计算区间内 容器元素累计总和

函数原型:

  • accumulate(iterator beg, iterator end, value);
  • // 计算容器元素累计总和
  • // beg 开始迭代器
  • // end 结束迭代器
  • // value 起始值
#include<iostream>
#include<vector>
#include<numeric>
using namespace std;

void test01() {
	vector<int>v1;

	int num;
	while (cin >> num) {
		v1.push_back(num);
	}
	cout << accumulate(v1.begin(), v1.end(), 0) << endl;
}
int main() {
	test01();

	system("pause");
	return 0;
}

总结:accumulate使用时头文件注意是 numeric,这个算法很实用。

fill

功能描述:

  • 向容器中填充指定的元素

函数原型:

  • fill(iterator beg, iterator end, value);
  • // 向容器中填充元素
  • // beg 开始迭代器
  • // end 结束迭代器
  • // value 填充的值
#include<iostream>
#include<vector>
#include<numeric>
#include<algorithm>
using namespace std;

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

void test01() {
	vector<int>v1;
	v1.resize(10);
	fill(v1.begin(), v1.end(), 100);
	for_each(v1.begin(), v1.end(), myPrint());
	cout << endl;
}
int main() {
	test01();

	system("pause");
	return 0;
}

总结:利用fill可以将容器区间内元素填充为 指定的值 。

发布了68 篇原创文章 · 获赞 141 · 访问量 29万+

猜你喜欢

转载自blog.csdn.net/cfl997/article/details/103308634