C++ 算法 unique_copy() 函数用于复制一个序列,例如每个重复的连续元素成为唯一元素。
- 它不会改变原始范围并将结果复制到另一个容器中。
- 第一个版本使用 operator== 来比较元素,第二个版本使用给定的二元谓词 pred。
用法
equality (1) template <class InputIterator, class OutputIterator>
OutputIterator unique_copy (InputIterator first, InputIterator last,
OutputIterator result);
predicate (2) template <class InputIterator, class OutputIterator, class BinaryPredicate>
OutputIterator unique_copy (InputIterator first, InputIterator last,
OutputIterator result, BinaryPredicate pred);
参数
first:一个向前迭代器,指向要复制的范围内第一个元素的位置。
last:一个向前迭代器,指向要复制的范围中最后一个元素之后的位置。
pred: 一个用户定义的谓词函数对象,它定义了在一个范围内的两个元素被视为等价时要满足的条件。二元谓词返回两个参数,满足时返回真,不满足时返回假。
result: 一个输出迭代器,指向复制范围中第一个元素的位置,该元素正在接收删除连续重复项的副本。
返回值
指向不包含连续重复项的复制范围 [first, last) 的新结尾的迭代器。
复杂度
复杂度在[first, last)范围内是线性的:比较每对连续的元素,并对其中的一些进行赋值操作。
数据竞争
访问范围 [first, last) 中的对象,并修改 result 和返回值之间范围内的对象。
异常安全
如果 pred、元素比较、元素赋值或迭代器上的操作中的任何一个抛出异常,则此函数将抛出异常。
请注意,无效参数会导致未定义的行为。
例子1
让我们看一个简单的例子来演示 unique_copy() 的使用,其中元素将通过 operator== 进行比较:
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
vector<int> v = { 100, 100, 300, 300, 300, 500, 100,
300, 300, 600, 600, 700 };
// vector to store the copied value
vector<int> v1(10);
vector<int>::iterator ip;
// Using unique_copy
ip = unique_copy(v.begin(), v.begin() + 12, v1.begin());
// Resizing vector v1
v1.resize(distance(v1.begin(), ip));
cout << "Before:";
for (ip = v.begin(); ip != v.end(); ++ip)
{
cout << *ip << " ";
}
// Displaying vector after applying unique_copy
cout << "\n\nAfter: ";
for (ip = v1.begin(); ip != v1.end(); ++ip)
{
cout << *ip << " ";
}
return 0;
}
输出:
Before:100 100 300 300 300 500 100 300 300 600 600 700 After: 100 300 500 100 300 600 700
在上面的例子中,向量 v 的所有连续重复元素的 sub-group 都被减少到只有一个元素并复制到新的向量 v1。
例子2
让我们看另一个简单的例子来说明 unique_copy() 的使用,其中元素将通过预定义的函数进行比较:
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
// declaring a BinaryFunction
bool Pred(char a, char b)
{
// It checks if the both the arguments are same and equal
// to 'v' then only they are considered same and duplicates are removed
if (a == b && a == 'v')
{
return 1;
}
else
{
return 0;
}
}
int main()
{
// Declaring a string
string s = "You arre vvvisiting vvvogie bbogie", s1;
// Using std::unique_copy to remove the consecutive
// v in the word and copy it to s1
auto ip = unique_copy(s.begin(), s.end(), back_inserter(s1), Pred);
cout << "Before:" << s;
// Displaying the corrected string
cout << "\nAfter:" << s1;
return 0;
}
输出:
Before:You arre vvvisiting vvvogie bbogie After:You arre visiting vogie bbogie
例子3
让我们看另一个简单的例子来检查容器是否包含重复元素:
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
vector<int> v = { 1, 4, 3, 5, 2, 7, 6 };
vector<int>::iterator ip;
// Sorting the array to make duplicate elements
// consecutive
sort(v.begin(), v.end());
// Now v becomes 1 2 3 4 5 6 7
// Declaring a container to store the unique elements
vector<int> v1(7);
// Using unique_copy
ip = unique_copy(v.begin(), v.end(), v1.begin());
// Now v1 becomes {1 2 3 4 5 6 7 }
if (v == v1)
{
cout << "v1 contains only unique elements";
}
else
{
cout << "v1 contains duplicate elements";
}
return 0;
}
输出:
v1 contains only unique elements
在上面的示例中,首先我们从向量 v 中删除重复元素并将结果元素存储到另一个向量 v1 中,然后将 v1 与 v 进行比较,如果两者相同。 (意味着之前的向量 v 只包含唯一元素并且没有重复元素)。
示例 4
让我们看另一个从给定语句中删除所有空格的简单示例:
#include <string>
#include <iostream>
#include <algorithm>
#include <iterator>
using namespace std;
int main()
{
string s1 = "The string with many spaces!";
cout << "before: " << s1 << '\n';
string s2;
unique_copy(s1.begin(), s1.end(), std::back_inserter(s2),
[](char c1, char c2){ return c1 == ' ' && c2 == ' '; });
cout << "after: " << s2 << '\n';
}
输出:
before: The string with many spaces! after: The string with many spaces!
相关用法
- C++ Algorithm unique()用法及代码示例
- C++ Algorithm upper_bound()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
- C++ Algorithm remove()用法及代码示例
- C++ Algorithm max_element()用法及代码示例
- C++ Algorithm set_union()用法及代码示例
- C++ Algorithm next_permutation()用法及代码示例
- C++ Algorithm minmax()用法及代码示例
- C++ Algorithm remove_copy_if()用法及代码示例
- C++ Algorithm random_shuffle()用法及代码示例
- C++ Algorithm pop_heap()用法及代码示例
- C++ Algorithm replace()用法及代码示例
- C++ Algorithm set_intersection()用法及代码示例
- C++ Algorithm lower_bound()用法及代码示例
- C++ Algorithm transform()用法及代码示例
- C++ Algorithm set_difference()用法及代码示例
- C++ Algorithm is_sorted()用法及代码示例
- C++ Algorithm equal_range()用法及代码示例
- C++ Algorithm minmax_element()用法及代码示例
- C++ Algorithm stable_sort()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm unique_copy()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。