C++-STL-之vector的用法

今天想操作一下vector对于pair元素的运用。感觉pair这个结构实际过程中还是蛮有用的

初看起来很简单,但是实际运用过程中却发现了一些问题。果然是应了那句话,书上得来终觉浅,绝知此事要躬行。比如那个sort(a,b,cmp);当我写成sort(a,b,cmp(xx,xx))的时候,程序报错了,然后我一下子就蒙了。

其实是对这个用法理解不深所致。正确的写法是sort(a,b,cmp)就可以,cmp后面不用加括号和参数。注意cmp程序的参数的设计中,参数的元素类型必须是同vector的元素是一致的,不然会马上报错,如下设成

C++-STL-之vector的用法

 

 完整的测试代码如下:

 1 #include "map"
 2 #include "iostream"
 3 #include <vector>
 4 #include <map>
 5 #include "algorithm"
 6 #include <unordered_map>
 7 using namespace std;
 8 bool cmp(pair<string,int>p1,pair<string,int>p2)
 9 {
10 
11     return p1。second<p2.second;
12 }
13 int _tmain(int argc, _TCHAR* argv[])
14 {
15     vector<pair<string,int>> scores;
16         map<int,string>m;
17         pair<string,int>p1("liming",90);
18         pair<string,int>p2("zhangsan",95);
19         pair<string,int>p3("lisi",60);
20         scores.push_back(p1);
21         scores.push_back(p2);
22         scores.push_back(p3);
23          sort(scores.begin(),scores.end(),cmp);
24     
25 }

 

上一篇:如何修改max界面字体颜色?


下一篇:牛客练习赛96(未完工)