C++ 算法 remove_copy() 函数用于从[first, last) 范围内复制所有不等于val 的元素以提供结果,而不会干扰其余元素的顺序。
这个函数不能改变容器的大小。
- 它返回一个迭代器到范围的新末端。
- 删除是稳定的。这意味着,未被删除的元素的相对顺序保持不变。
- 此函数使用 operator== 将元素与给定的 val 进行比较。
用法
template <class InputIterator, class OutputIterator, class T>
OutputIterator remove_copy (InputIterator first, InputIterator last, OutputIterator result, const T& val);
参数
first: 一个前向迭代器,指向元素被移除的范围内的第一个元素的位置。
last:一个前向迭代器,指向从元素被移除的范围中最后一个元素之后的位置。
result:一个输出迭代器,指向元素被移除的范围的初始位置。
val: 要从范围 [first, last) 中删除的值。
返回值
指向复制范围的新结束位置 (last) 的前向迭代器,其中包括 [first, last) 中的所有元素,除了那些比较等于 val 的元素。
复杂度
复杂度在[first, last)范围内是线性的:比较每个元素,对没有被移除的元素进行赋值操作。
数据竞争
访问范围 [first, last) 中的对象。
结果和返回值之间范围内的对象发生了变化。
异常安全
如果元素比较、元素赋值或迭代器上的操作中的任何一个抛出异常,则此函数将抛出异常。
注意:无效的参数可能会导致未定义的行为。
例子1
让我们看一个简单的例子来演示 remove_copy() 的使用:
#include <algorithm>
#include <iostream>
#include <vector>
#include <iterator>
using namespace std;
int main() {
vector<int> v = { 2,3,1,2,1 };
remove_copy(v.begin(), v.end(),
ostream_iterator<int>(cout, ","), 1);
return 0;
}
输出:
2,3,2,
例子2
让我们看另一个简单的例子:
#include <iostream> // std::cout
#include <algorithm> // std::remove_copy
#include <vector> // std::vector
using namespace std;
int main () {
int myints[] = {10,20,50,30,20,10,40,20};
vector<int> myvector (8);
remove_copy (myints,myints+8,myvector.begin(),20);
cout << "myvector contains:";
for (vector<int>::iterator it=myvector.begin(); it!=myvector.end(); ++it)
cout << ' ' << *it;
cout << '\n';
return 0;
}
输出:
myvector contains:10 50 30 10 40 0 0 0
例子3
让我们看另一个从给定文本中删除所有空格的简单示例:
#include <algorithm>
#include <iterator>
#include <string>
#include <iostream>
using namespace std;
int main()
{
string str = "Text with some spaces";
cout << "before:" << str << "\n";
cout << "after: ";
remove_copy(str.begin(), str.end(),
ostream_iterator<char>(cout), ' ');
cout << '\n';
return 0;
}
输出:
before:Text with some spaces after: Textwithsomespaces
示例 4
让我们看另一个简单的例子:
#include <vector>
#include <algorithm>
#include <iostream>
int main() {
using namespace std;
vector <int> v1, v2(10);
vector <int>::iterator Iter1, Iter2, new_end;
int i;
for ( i = 0 ; i <= 9 ; i++ )
v1.push_back( i );
int ii;
for ( ii = 0 ; ii <= 3 ; ii++ )
v1.push_back( 7 );
random_shuffle (v1.begin( ), v1.end( ) );
cout << "The original vector v1 is: ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")." << endl;
// Remove elements with a value of 7
new_end = remove_copy ( v1.begin( ), v1.end( ), v2.begin( ), 7 );
cout << "Vector v1 is left unchanged as ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")." << endl;
cout << "Vector v2 is a copy of v1 with the value 7 removed:\n ( " ;
for ( Iter2 = v2.begin( ) ; Iter2 != v2.end( ) ; Iter2++ )
cout << *Iter2 << " ";
cout << ")." << endl;
}
输出:
The original vector v1 is: ( 4 7 7 7 0 5 7 1 6 9 3 7 8 2 ). Vector v1 is left unchanged as ( 4 7 7 7 0 5 7 1 6 9 3 7 8 2 ). Vector v2 is a copy of v1 with the value 7 removed: ( 4 0 5 1 6 9 3 8 2 0 ).
相关用法
- C++ Algorithm remove_copy_if()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
- C++ Algorithm remove()用法及代码示例
- C++ Algorithm replace()用法及代码示例
- C++ Algorithm reverse_copy()用法及代码示例
- C++ Algorithm replace_copy()用法及代码示例
- C++ Algorithm replace_copy_if()用法及代码示例
- C++ Algorithm reverse()用法及代码示例
- C++ Algorithm replace_if()用法及代码示例
- C++ Algorithm random_shuffle()用法及代码示例
- C++ Algorithm rotate()用法及代码示例
- C++ Algorithm rotate_copy()用法及代码示例
- C++ Algorithm max_element()用法及代码示例
- C++ Algorithm set_union()用法及代码示例
- C++ Algorithm next_permutation()用法及代码示例
- C++ Algorithm upper_bound()用法及代码示例
- C++ Algorithm minmax()用法及代码示例
- C++ Algorithm pop_heap()用法及代码示例
- C++ Algorithm set_intersection()用法及代码示例
- C++ Algorithm lower_bound()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm remove_copy()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。