【LeetCode】451. 根据字符出现频率排序

1.题目

给定一个字符串,请将字符串里的字符按照出现的频率降序排列。

示例 1:

输入: “tree”

输出: “eert”

解释: 'e’出现两次,'r’和’t’都只出现一次。 因此’e’必须出现在’r’和’t’之前。此外,"eetr"也是一个有效的答案。
点击跳转原题

2.思路

建立map数组统计字母数量;
建立和map类型一直的数组用于排序;
自定义排序算法,按照数量从大到小排序;
输出

3.代码

在自定义排序算法的时候要注意不能自定义函数,否则LeetCode平台不能通过;只能在函数里面添加。

class Solution {
public:
    typedef pair<char,int>pii;

    bool cmp(pii a,pii b){
	return a.second>b.second;
    }   

    string frequencySort(string s) {
    int len=s.length();
	map<char,int>mp;
	for(int i=0;i<len;i++){
		mp[s[i]]++;
	}
	vector<pii>vc;
	vector<pii>::iterator ip;
	map<char,int>::iterator t;
	for(t=mp.begin();t!=mp.end();t++){
		vc.push_back(pii(t->first, t->second));
		//cout<< t->first <<" "<<t->second<<endl;
	}
	//puts("-------------------------------------");
	sort(vc.begin(), vc.end(), [](const pair<char, int>& x, const pair<char, int>& y) -> int {return x.second > y.second;});
	string res="";
	for(ip=vc.begin(); ip!=vc.end(); ip++) {
		//cout<<ip->first<<"  "<<ip->second<<endl;
		res.append(ip->second,ip->first);
	}
	cout<<res;
	return res;
    }
};

4.优秀案例

参考大佬算法:
可以定义一个新的比较类来进行比较操作;

class Solution {
public:
    typedef pair<char,int>pii;

    bool cmp(pii a,pii b){
	return a.second>b.second;
    }   

    string frequencySort(string s) {
    int len=s.length();
	map<char,int>mp;
	for(int i=0;i<len;i++){
		mp[s[i]]++;
	}
	vector<pii>vc;
	vector<pii>::iterator ip;
	map<char,int>::iterator t;
	for(t=mp.begin();t!=mp.end();t++){
		vc.push_back(pii(t->first, t->second));
		//cout<< t->first <<" "<<t->second<<endl;
	}
	//puts("-------------------------------------");
	sort(vc.begin(), vc.end(), [](const pair<char, int>& x, const pair<char, int>& y) -> int {return x.second > y.second;});
	string res="";
	for(ip=vc.begin(); ip!=vc.end(); ip++) {
		//cout<<ip->first<<"  "<<ip->second<<endl;
		res.append(ip->second,ip->first);
	}
	cout<<res;
	return res;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值