C++ 算法 unique_copy()函数

C++ 算法 unique_copy()函数

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 : 一个用户定义的谓词函数对象,用于定义在范围中的两个元素被视为等价时的条件。二元谓词接受两个参数,并在满足条件时返回true,否则返回false。

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中的所有连续重复的子组合都被缩减为一个元素并复制到新的向量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!

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程