Buscar..


Creando un par y accediendo a los elementos.

El par nos permite tratar dos objetos como un solo objeto. Los pares se pueden construir fácilmente con la ayuda de la función de plantilla std::make_pair .

Una forma alternativa es crear un par y asignar sus elementos ( first y second ) más tarde.

#include <iostream>
#include <utility>

int main()
{
    std::pair<int,int> p = std::make_pair(1,2); //Creating the pair
    std::cout << p.first << " " << p.second << std::endl; //Accessing the elements




    //We can also create a pair and assign the elements later
    std::pair<int,int> p1;
    p1.first = 3;
    p1.second = 4;
    std::cout << p1.first << " " << p1.second << std::endl;

    //We can also create a pair using a constructor
    std::pair<int,int> p2 = std::pair<int,int>(5, 6);
    std::cout << p2.first << " " << p2.second << std::endl;

    return 0;
}

Comparar operadores

Los parámetros de estos operadores son lhs y rhs

  • operator== comprueba si ambos elementos en el par de lhs y rhs son iguales. El valor de retorno es true si ambos lhs.first == rhs.first Y lhs.second == rhs.second , de lo contrario false
std::pair<int, int> p1 = std::make_pair(1, 2);
std::pair<int, int> p2 = std::make_pair(2, 2);

if (p1 == p2)
    std::cout << "equals";
else
    std::cout << "not equal"//statement will show this, because they are not identical
  • operator!= prueba si algún elemento en el par de lhs y rhs no es igual. El valor de retorno es true si lhs.first != rhs.first O lhs.second != rhs.second , de lo contrario, devuelve false .

  • operator< prueba si lhs.first<rhs.first , devuelve true . De lo contrario, si rhs.first<lhs.first devuelve false . De lo contrario, si lhs.second<rhs.second devuelve true , de lo contrario, devuelve false .

  • operator<= devuelve !(rhs<lhs)

  • operator> devuelve rhs<lhs

  • operator>= devuelve !(lhs<rhs)

    Otro ejemplo con contenedores de pares. Utiliza el operator< porque necesita ordenar el contenedor.

#include <iostream>
#include <utility>
#include <vector>
#include <algorithm>
#include <string>
 
int main()
{
    std::vector<std::pair<int, std::string>> v = { {2, "baz"},
                                                   {2, "bar"},
                                                   {1, "foo"} };
    std::sort(v.begin(), v.end());
 
    for(const auto& p: v) {
        std::cout << "(" << p.first << "," << p.second << ") ";
        //output: (1,foo) (2,bar) (2,baz)
    }
}


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow