标签:air cond 合成 type 个数 使用 gre queue 组合
pair:用来将两个数据组合成一个数据
①头文件:#include <utility>
②每个pair 有两个属性值first和second,可通过first ,second访问成员数据:
③可使用typedef 定义 pair类型:
typedef pair<int, int> P ;
P p(1,2);
int num1 = p.first;
int num2= p.second;
prority_queue(P, vector<P>, greater<P> > q;
标签:air cond 合成 type 个数 使用 gre queue 组合
原文地址:https://www.cnblogs.com/shiliuxinya/p/12180604.html