#include
//也可以直接用#include
using namespace std;
pair<int, double> p1; //使用默认构造函数
pair<int, double> p2(1, 2.4); //用给定值初始化
pair<int, double> p3(p2); //拷贝构造函数
auto myPair = std::make_pair(10, 3.14);
pair<int, double> p1; //使用默认构造函数
p1.first = 1;
p1.second = 2.5;
cout << p1.first << ' ' << p1.second << endl;
#include "pch.h"
#include
#include
#include
using namespace std;
int main()
{
pair<string, int> p;
p.first = "haha";
p.second = 5;
cout << p.first << " " << p.second << endl;
p = make_pair("xixi", 55);
cout << p.first << " " << p.second << endl;
p = pair<string, int>("heihei", 555);
cout << p.first << " " << p.second << endl;
pair<string, int> p1 = p;
cout << p.first << " " << p.second << endl;
}
#include "pch.h"
#include
#include
#include
using namespace std;
int main()
{
pair<int, int> p1(5, 10);
pair<int, int> p2(5, 15);
pair<int, int> p3(10, 5);
if (p1 < p3)
printf("p1);
if (p1 <= p3)
printf("p1<=p3\n");
if (p1 < p2)
printf("p1);
return 0;
}
(1)用来代替二元结构体及其构造函数,可以节省编码时间;
(2)作为map的键值对来进行插入,示例如下:
#include "pch.h"
#include
#include
#include
#include
#include
using namespace std;
int main()
{
map<string, int> mp;
mp.insert(make_pair("heihei", 5));
mp.insert(pair<string, int>("haha", 10));
for (map<string, int>::iterator it = mp.begin(); it != mp.end(); it++)
{
cout << it->first << " " << it->second << endl;
}
return 0;
}
可以对包含pair对象的序列进行排序。默认情况下,它将按照pair的第一个元素进行排序,也可以通过提供自定义的比较函数来指定排序规则。例如:
#include
#include
#include
bool comparePairs(const std::pair<int, double>& p1, const std::pair<int, double>& p2) {
return p1.second < p2.second;
}
int main() {
std::vector<std::pair<int, double>> pairs = {{2, 3.0}, {1, 1.5}, {3, 2.5}};
std::sort(pairs.begin(), pairs.end(), comparePairs);
// pairs 现在为 {{1, 1.5}, {3, 2.5}, {2, 3.0}}
return 0;
}
可以对包含pair对象的序列中的每个元素执行某个函数。例如:
#include
#include
#include
#include
void printPair(const std::pair<int, double>& p) {
std::cout << "(" << p.first << ", " << p.second << ")" << std::endl;
}
int main() {
std::vector<std::pair<int, double>> pairs = {{1, 1.5}, {2, 3.0}, {3, 2.5}};
std::for_each(pairs.begin(), pairs.end(), printPair);
return 0;
}
可以在包含pair对象的序列中查找满足某个条件的元素。例如:
#include
#include
#include
bool isSecondGreaterThanTwo(const std::pair<int, double>& p) {
return p.second > 2.0;
}
int main() {
std::vector<std::pair<int, double>> pairs = {{1, 1.5}, {2, 3.0}, {3, 2.5}};
auto it = std::find_if(pairs.begin(), pairs.end(), isSecondGreaterThanTwo);
if (it != pairs.end()) {
std::cout << "Found pair with second element > 2.0: (" << it->first << ", " << it->second << ")" << std::endl;
}
return 0;
}
可以对包含pair对象的序列进行累加或其他二元操作。该函数接受三个参数:迭代器范围、累加器的初始值和一个二元操作函数。该函数将返回通过二元操作函数执行累加或其他操作的结果。例如:
#include
#include
#include
double sumSecondElements(double acc, const std::pair<int, double>& p) {
return acc + p.second;
}
int main() {
std::vector<std::pair<int, double>> pairs = {{1, 1.5}, {2, 3.0}, {3, 2.5}};
double sum = std::accumulate(pairs.begin(), pairs.end(), 0.0, sumSecondElements);
std::cout << "Sum of second elements: " << sum << std::endl;
return 0;
}
可以对包含pair
对象的序列中的每个元素执行某个操作,并将结果存储在另一个序列中。例如:
#include
#include
#include
double addOneToSecond(const std::pair<int, double>& p) {
return p.second + 1.0;
}
int main() {
std::vector<std::pair<int, double>> pairs = {{1, 1.5}, {2, 3.0}, {3, 2.5}};
std::vector<double> result;
std::transform(pairs.begin(), pairs.end(), std::back_inserter(result), addOneToSecond);
// result 现在为 {2.5, 4.0, 3.5}
return 0;
}