拷贝算法:copy
:拷贝容器元素至另一容器。
替换算法:replace
:将容器内的指定值全部替换为新值。replace_if
:按条件将容器内指定范围的旧元素替换为新元素。swap
:互换两个相同类型容器的元素。
函数原型:copy(iterator begin, iterator end, iterator dest);
参数解释:begin
:源容器迭代器的起始位置;end
:源容器迭代器的结束位置;dest
:目标容器迭代器的起始位置。
具体使用copy
算法时,需包含头文件include <algorithm>
。
此外,使用copy
算法时,需为目标容器提前开辟内存空间,如dest.resize(src.size());
,否则程序运行时崩溃。
具体应用实例:
#include <iostream>
#include <vector>
#include <algorithm> //使用copy算法调用的头文件
using namespace std;
int main() {
vector<int> src;
for (int i = 0; i < 5; i++) {
src.push_back(i);
}
//为copy的目标容器开辟内存空间
vector<int> dest;
dest.resize(src.size());
copy(src.begin(), src.end(), dest.begin());//copy函数实现
return 0;
}
作用:将容器内的指定值的元素全部替换为新值。
使用replace算法时,需包含头文件include <algorithm>。
函数原型:
replace(iterator begin, iterator end, oldvalue, newvalue);
参数解释:
begin:迭代器起始位置;
end:迭代器结束位置;
oldvalue:被替换的旧元素;
oldvalue:替换的新元素。
具体应用实例:
#include <iostream>
#include <vector>
#include <algorithm> //replace算法头文件
using namespace std;
int main() {
vector<int> v;
v.push_back(9);
v.push_back(7);
v.push_back(1);
v.push_back(7);
for_each(v.begin(), v.end(), [](int val) {cout << val << " "; }); //9 7 1 7
//replace():将容器内的全部7替换为0
replace(v.begin(), v.end(), 7, 0);
for_each(v.begin(), v.end(), [](int val) {cout << val << " "; }); //9 0 1 0
return 0;
//std:string sss="runoob";
// replace(v.begin(), v.end(), 'o', 's');//将字符串中o字符全部替换为s
}
作用:将容器内满足指定条件的元素全部替换为新元素。
使用replace_if算法时,需包含头文件include <algorithm>。
函数原型:
replace_if(iterator begin, iterator end, _pred, newvalue);
参数解释:
begin:迭代器起始位置;
end:迭代器结束位置;
_pred:指定条件。
①普通回调函数;
②谓词(返回类型为bool的仿函数);
③匿名函数(lambda表达式)。
newvalue:替换的新元素。
具体应用实例:
#include <iostream>
#include <vector>
#include <algorithm> //使用replace_if算法
using namespace std;
//回调函数
bool lessFive(int val) {
return val < 5;
}
//谓词(返回类型为bool的仿函数/函数对象)
class LessFive {
public:
bool operator()(int val) {
return val < 5;
}
};
//将小于5的元素全部替换为6
int main() {
vector<int> v;
v.push_back(9);
v.push_back(1);
v.push_back(7);
for_each(v.begin(), v.end(), [](int val) {cout << val << " "; }); //9 6 7
//回调函数
//replace_if(v.begin(), v.end(), lessFive, 6);
//for_each(v.begin(), v.end(), [](int val) {cout << val << " "; }); //9 6 7
//谓词
//replace_if(v.begin(), v.end(), LessFive(),6);
//for_each(v.begin(), v.end(), [](int val) {cout << val << " "; }); //9 6 7
//匿名函数(lambda表达式)
replace_if(v.begin(), v.end(), [](int val) {return val < 5; }, 6);
for_each(v.begin(), v.end(), [](int val) {cout << val << " "; }); //9 6 7
return 0;
}
作用:互换两个相同类型容器的元素。
注:使用swap
算法时,需包含头文件include <algorithm>
。
函数原型:swap(container c1, container c2);
参数解释:c1
:容器1;c2
:容器2。
具体应用实例:
#include <iostream>
#include <vector>
#include <algorithm> //使用swap算法
using namespace std;
int main() {
vector<int> v1;
vector<int> v2;
for (int i = 0; i < 5; i++) {
v1.push_back(i);
v2.push_back(-i);
}
cout << "交换前..." << endl;
for_each(v1.begin(), v1.end(), [](int val) {cout << val << " "; }); //0 1 2 3 4
cout << endl;
for_each(v2.begin(), v2.end(), [](int val) {cout << val << " "; }); //0 -1 -2 -3 -4
cout << endl;
//交换
swap(v1, v2);
cout << "交换后..." << endl;
for_each(v1.begin(), v1.end(), [](int val) {cout << val << " "; }); //0 -1 -2 -3 -4
cout << endl;
for_each(v2.begin(), v2.end(), [](int val) {cout << val << " "; }); //0 1 2 3 4
cout << endl;
return 0;
}