📅  最后修改于: 2020-10-17 05:08:38             🧑  作者: Mango
C++ STL algorithm.unique_copy()函数用于复制序列,例如每个重复的连续元素成为唯一元素。
equality (1) template
OutputIterator unique_copy (InputIterator first, InputIterator last,
OutputIterator result);
predicate (2) template
OutputIterator unique_copy (InputIterator first, InputIterator last,
OutputIterator result, BinaryPredicate pred);
first:一个正向迭代器,指向要复制范围中第一个元素的位置。
last:一个向前的迭代器,指向要复制的范围中最后一个元素之后的位置。
pred:一个用户定义的谓词函数对象,它定义范围内的两个元素等效时要满足的条件。二进制谓词返回两个参数,满足时返回true,不满足时返回false。
结果:一个输出迭代器,该迭代器指向复制范围中第一个元素的位置,该元素正在接收删除了连续重复项的副本。
指向不包含连续重复项的复制范围的新结尾(第一个,最后一个)的迭代器。
复杂度在[first,last)范围内呈线性:比较每对连续元素,并对其中一些元素执行赋值操作。
访问范围为[first,last)的对象,并修改结果和返回值之间范围内的对象。
如果pred,元素比较,元素分配或迭代器上的任何操作抛出异常,则此函数将引发异常。
请注意,无效的参数会导致未定义的行为。
让我们看一个简单的示例,以演示unique_copy()的用法,其中元素将由运算符==进行比较:
#include
#include
#include
using namespace std;
int main()
{
vector v = { 100, 100, 300, 300, 300, 500, 100,
300, 300, 600, 600, 700 };
// vector to store the copied value
vector v1(10);
vector::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的所有连续重复元素的子组都被简化为一个元素,并被复制到新的向量v1中。
让我们看另一个简单的例子来说明unique_copy()的用法,其中元素将通过预定义函数进行比较:
#include
#include
#include
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
让我们看另一个简单的示例,检查容器是否包含重复元素:
#include
#include
#include
using namespace std;
int main()
{
vector v = { 1, 4, 3, 5, 2, 7, 6 };
vector::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 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仅包含唯一元素,没有重复元素)。
让我们看另一个简单的示例,删除给定语句中的所有空格:
#include
#include
#include
#include
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!