我是靠谱客的博主 认真店员,最近开发中收集的这篇文章主要介绍【Leetcode】451. 根据字符出现频率排序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目描述:

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

示例 1:

输入:
"tree"

输出:
"eert"

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

示例 2:

输入:
"cccaaa"

输出:
"cccaaa"

解释:
'c'和'a'都出现三次。此外,"aaaccc"也是有效的答案。
注意"cacaca"是不正确的,因为相同的字母必须放在一起。

示例 3:

输入:
"Aabb"

输出:
"bbAa"

解释:
此外,"bbaA"也是一个有效的答案,但"Aabb"是不正确的。
注意'A'和'a'被认为是两种不同的字符。

解题思路:

使用map统计单词出现的次数,然后按照value排序map,最后将map中字符按照个数依次写入string。

AC代码:

class Solution {
public:
static bool comp(pair<char, int> a, pair<char, int> b)
{
	if (a.second >= b.second)
		return true;
	else
		return false;
}
string frequencySort(string s) 
{
	unordered_map<char, int> hash;
	for (int i = 0; i < s.size(); i++)
	{
		if (hash.count(s[i]) == 0) 
			hash[s[i]] = 1;
		else 
			hash[s[i]]++;
	}
	vector<pair<char, int>> count;
	for (unordered_map<char, int>::iterator it = hash.begin(); it != hash.end(); it++)
		count.push_back(pair<char, int>((*it).first, (*it).second));
	sort(count.begin(), count.end(), comp);

	string result;
	for (int i = 0; i < count.size(); i++)
	{
		for (int j = 0; j < count[i].second; j++)
			result += count[i].first;
	}
	return result;
}

};

 

最后

以上就是认真店员为你收集整理的【Leetcode】451. 根据字符出现频率排序的全部内容,希望文章能够帮你解决【Leetcode】451. 根据字符出现频率排序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部