博客
关于我
pair的用法
阅读量:554 次
发布时间:2019-03-09

本文共 1375 字,大约阅读时间需要 4 分钟。

#include <bits/stdc++.h>

using namespace std;

// 比较结构cmp1,按first降序,否则按second升序

struct cmp1{
bool operator()(const pair<int,int>& a, const pair<int,int>& b){
if(a.first != b.first)
return a.first > b.first;
else
return a.second < b.second;
}

// 比较结构cmp2,按second升序,否则按first降序

struct cmp2{
bool operator()(const pair<int,int>& q1, const pair<int,int>& q2){
if(q1.first == q2.first)
return q1.second > q2.second;
else
return q1.first < q2.first;
}

int main(){

// pair的基本用法
pair<int,double> p1(1, 2.2);
pair<int,double> p2;
p2 = p1;
cout << p2.first << " " << p2.second << endl;
p2 = make_pair(1,3);
cout << p2.first << " " << p2.second << endl;

// pair结合其他的用法  pair
p3[10]; for(int i = 0; i < 5; ++i){ p3[i] = make_pair(i, i+1); } sort(p3, p3+5, cmp1); for(int i = 0; i < 5; ++i){ cout << p3[i].first << " " << p3[i].second << endl; } vector
> p4; for(int i = 0; i < 5; ++i){ p4.push_back({1, i+1}); p4.push_back(make_pair(i, i+1)); } sort(p4.begin(), p4.end(), cmp1); int len = p4.size(); for(int i = 0; i < len; ++i){ cout << p4[i].first << " " << p4[i].second << endl; } priority_queue
, vector
>, Greater
> p5; p5.push({2,2}); p5.push({1,2}); p5.push({2,3}); while(!p5.empty()){ cout << p5.top().first << " " << p5.top().second << endl; p5.top(); p5.pop(); }

}

转载地址:http://onwpz.baihongyu.com/

你可能感兴趣的文章
MySQL 高可用性之keepalived+mysql双主
查看>>
mysql5.6.21重置数据库的root密码
查看>>
MySQL5.6忘记root密码(win平台)
查看>>
mysql5.7 for windows_MySQL 5.7 for Windows 解压缩版配置安装
查看>>
MySQL5.7.18主从复制搭建(一主一从)
查看>>
MySQL5.7.19-win64安装启动
查看>>
mysql5.7性能调优my.ini
查看>>
Mysql5.7深入学习 1.MySQL 5.7 中的新增功能
查看>>
Mysql5.7版本单机版my.cnf配置文件
查看>>
mysql5.7的安装和Navicat的安装
查看>>
mysql5.7示例数据库_Linux MySQL5.7多实例数据库配置
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MySQL8修改密码报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
查看>>
MySQL8找不到my.ini配置文件以及报sql_mode=only_full_group_by解决方案
查看>>
mysql8的安装与卸载
查看>>
mysqlbinlog报错unknown variable ‘default-character-set=utf8mb4‘
查看>>
mysqldump 导出中文乱码
查看>>
mysqldump备份时忽略某些表
查看>>
mysqldump实现数据备份及灾难恢复
查看>>
mysqlreport分析工具详解
查看>>