replace原型:
template
void replace (ForwardIterator first, ForwardIterator last,
const T& old_value, const T& new_value);
行为类似于:
template
void replace (ForwardIterator first, ForwardIterator last,
const T& old_value, const T& new_value)
{
while (first!=last) {
if (*first == old_value) *first=new_value;
++first;
}
}
replace_if原型:
templatevoid replace_if (ForwardIterator first, ForwardIterator last, UnaryPredicate pred, const T& new_value );
行为类似于:
template < class ForwardIterator, class UnaryPredicate, class T >
void replace_if (ForwardIterator first, ForwardIterator last,
UnaryPredicate pred, const T& new_value)
{
while (first!=last) {
if (pred(*first)) *first=new_value;
++first;
}
}
#include
#include
#include
using namespace std;
void replaceif()
{
vector vi{1,2,3,4,4,6};
vector v2{1,2,3,4,5,6};
cout<<"vi=";
for(int i:vi)
cout<
运行截图:
templateOutputIterator replace_copy (InputIterator first, InputIterator last, OutputIterator result, const T& old_value, const T& new_value);
返回值为最后一个被覆盖元素的下一个位置的迭代器。
其行为类似于:
template
OutputIterator replace_copy (InputIterator first, InputIterator last,
OutputIterator result, const T& old_value, const T& new_value)
{
while (first!=last) {
*result = (*first==old_value)? new_value: *first;
++first; ++result;
}
return result;
}
replace_copy_if原型:
templateOutputIterator replace_copy_if (InputIterator first, InputIterator last, OutputIterator result, UnaryPredicate pred, const T& new_value);
返回值为最后一个被覆盖元素的下一个位置的迭代器。
其行为类似于:template
OutputIterator replace_copy_if (InputIterator first, InputIterator last,
OutputIterator result, UnaryPredicate pred,
const T& new_value)
{
while (first!=last) {
*result = (pred(*first))? new_value: *first;
++first; ++result;
}
return result;
}
两者合成一个简单的例子:
#include
#include
#include
using namespace std;
void replacecopyif()
{
vector vi{1,2,3,4,4,6};
vector vresult1(6);
vector vresult2(6);
cout<<"vi=";
for(int i:vi)
cout<
运行截图:
——————————————————————————————————————————————————————————————————
//写的错误或者不好的地方请多多指导,可以在下面留言或者点击左上方邮件地址给我发邮件,指出我的错误以及不足,以便我修改,更好的分享给大家,谢谢。
转载请注明出处:http://blog.csdn.net/qq844352155
author:天下无双
Email:[email protected]
2014-9-25
于GDUT
—————————————————————————————————————————————————