【C++】map值自定义key,value排序(含ccfcsp第四次认证第二题演示和map遍历方法)

如何自定义map排序

sort仅仅支持pair,vector,数组等排序,不支持对map的排序

所以如果想用sort对map排序的话,只需要把map转换为vector即可:

mapres;
res[1]=1,res[2]=2,res[3]=3;
vector>rest;
for(auto it=res.begin();it!=res.end();it++)
rest.push_back((pair(it->first,it->second)));

再输出vector,即可得到我们想要的结果

如果想要在map遍历的时候,可以直接输出排序的结果,大不了把原来的map删掉,再把vector的内容重新赋值进去就行了

附上map遍历的方法

(string的data方法可以返回指向该字符串的第一个字符的字符型指针)

    map::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第四次第二题--数字排序

【C++】map值自定义key,value排序(含ccfcsp第四次认证第二题演示和map遍历方法)_第1张图片

【C++】map值自定义key,value排序(含ccfcsp第四次认证第二题演示和map遍历方法)_第2张图片

题解如下,思考map的使用技巧

#include
#include
#include
#include
#include
using namespace std;
int n;
mapres;
bool cmp(paira,pairb)
{
	if(a.second!=b.second)return a.second>b.second;
	else
	return a.first>n;
	for(int i=1;i<=n;i++)
	{
		int x;
		cin>>x;
		if(!res.count(x))res[x]=1;
		else res[x]++;
	}
	vector>rest;
	for(auto it=res.begin();it!=res.end();it++)
	rest.push_back((pair(it->first,it->second)));
	sort(rest.begin(),rest.end(),cmp);
	for(int i=0;i

你可能感兴趣的:(C++,CCF-CSP,c++,开发语言,stl,csp认证)