Libreria di elenchi C ++ - funzione unique ()

Descrizione

La funzione C ++ std::list::unique()Rimuove tutti gli elementi duplicati consecutivi dall'elenco. Usa predicato binario per il confronto.

Dichiarazione

Di seguito è riportata la dichiarazione per la funzione std :: list :: unique () nel modulo std :: list header.

C ++ 98

template <class BinaryPredicate>
void unique (BinaryPredicate binary_pred);

Parametri

binary_pred- predicato binario che restituisce vero se gli elementi devono essere trattati come uguali. Ha il seguente prototipo.

bool pred(const Type1 &arg1, const Type2 &arg2);

Valore di ritorno

Nessuna

Eccezioni

Questa funzione membro non genera mai eccezioni.

Complessità temporale

Lineare cioè O (n)

Esempio

L'esempio seguente mostra l'utilizzo della funzione std :: list :: unique ().

#include <iostream>
#include <list>

using namespace std;

/* Ignore sign of the value */
bool pred(int a, int b) {
   return (abs(a) == abs(b));
}

int main(void) {
   list <int> l = {1, -1, -1, -1, 2, 2, -2, -2, 3, -4, 4, -5, -5, 5};

   cout << "List elements before unique operation" << endl;

   for (auto it = l.begin(); it != l.end(); ++it)
      cout << *it << endl;

   /* Ignore sign of the value */
   l.unique(pred);

   cout << "List elements after unique operation" << endl;

   for (auto it = l.begin(); it != l.end(); ++it)
      cout << *it << endl;

   return 0;
}

Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:

List elements before unique operation
1
-1
-1
-1
2
2
-2
-2
3
-4
4
-5
-5
5
List elements after unique operation
1
2
3
-4
-5