sort仅仅支持pair,vector,数组等排序,不支持对map的排序
所以如果想用sort对map排序的话,只需要把map转换为vector即可:
- map<int,int>res;
- res[1]=1,res[2]=2,res[3]=3;
- vector
int,int>>rest; - for(auto it=res.begin();it!=res.end();it++)
- rest.push_back((pair<int,int>(it->first,it->second)));
再输出vector,即可得到我们想要的结果
如果想要在map遍历的时候,可以直接输出排序的结果,大不了把原来的map删掉,再把vector的内容重新赋值进去就行了
附上map遍历的方法
(string的data方法可以返回指向该字符串的第一个字符的字符型指针)
- map
int>::iterator it; - for (it = m2.begin(); it != m2.end(); it++) {
- string s = it->first;
- printf("%s %d\n", s.data(), it->second);
- }
- for(auto it : map1){
- cout << it.first <<" "<< it.second <
- }
csp第四次第二题--数字排序
题解如下,思考map的使用技巧
- #include
- #include
- #include
- #include
- #include
- using namespace std;
- int n;
- map<int,int>res;
- bool cmp(pair<int,int>a,pair<int,int>b)
- {
- if(a.second!=b.second)return a.second>b.second;
- else
- return a.first
- }
- int main()
- {
- cin>>n;
- for(int i=1;i<=n;i++)
- {
- int x;
- cin>>x;
- if(!res.count(x))res[x]=1;
- else res[x]++;
- }
- vector
int,int>>rest; - for(auto it=res.begin();it!=res.end();it++)
- rest.push_back((pair<int,int>(it->first,it->second)));
- sort(rest.begin(),rest.end(),cmp);
- for(int i=0;i
size();i++)cout<" "< - return 0;
- }
-
相关阅读:
Ubuntu18.04 realsenseD435i深度摄像头外参标定的问题
沉睡者IT - 说几个2022年网络上比较好赚钱的创业项目
怎么更改代理ip,代理ip如何切换使用?
软件产品登记证书和软著区别 软件产品登记证书怎么申请
YOLOv8改进 | 注意力机制 | 在主干网络中添加MHSA模块【原理+附完整代码】
应用第三方ByteTrack实现目标跟踪
使用libcurl实现Amazon网页抓取
《程序员延寿指南》登GitHub热榜,最多可增寿20年?
华大基因肿瘤检测助力早期癌症筛查,提高癌症患者生存率
机器学习自学成才的十条戒律
-
原文地址:https://blog.csdn.net/m0_63222058/article/details/132788409