如何自定义map排序
sort仅仅支持pair,vector,数组等排序,不支持对map的排序
所以如果想用sort对map排序的话,只需要把map转换为vector即可:
map<int,int>res;
res[1]=1,res[2]=2,res[3]=3;
vector<pair<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<string, 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 <<endl;
}
csp第四次第二题--数字排序
文章来源:https://www.toymoban.com/news/detail-704515.html
题解如下,思考map的使用技巧文章来源地址https://www.toymoban.com/news/detail-704515.html
#include<map>
#include<iostream>
#include<utility>
#include<vector>
#include<algorithm>
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<b.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<pair<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<rest.size();i++)cout<<rest[i].first<<" "<<rest[i].second<<endl;
return 0;
}
到了这里,关于【C++】map值自定义key,value排序(含ccfcsp第四次认证第二题演示和map遍历方法)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!