STL——pair
Posted tonyyy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL——pair相关的知识,希望对你有一定的参考价值。
功能:pair将一对值组合成一个值,这一对值可以具有不同的数据类型(T1和T2),两个值可以分别用pair的两个公有函数first和second访问。
#include <bits/stdc++.h> using namespace std; int main() { pair< int,double > p1; pair< int,pair< int, int> > p2; pair< string,int > p3; p2.first = 1; p2.second.first=2; p2.second.second=3; cout<<p2.first<<" "<<p2.second.first<<" "<<p2.second.second<<endl; p3 = make_pair("abc",6); cout<<p3.first<<" "<<p3.second<<endl; return 0; }
以上是关于STL——pair的主要内容,如果未能解决你的问题,请参考以下文章
codeforces 1045I Palindrome Pairs stl+构造