作者: 负雪明烛
id: fuxuemingzhu
个人博客: http://fuxuemingzhu.cn/


题目地址:https://leetcode.com/problems/sort-characters-by-frequency/description/

题目描述

Given a string, sort it in decreasing order based on the frequency of characters.

Example 1:

Input:
"tree" Output:
"eert" Explanation:
'e' appears twice while 'r' and 't' both appear once.
So 'e' must appear before both 'r' and 't'. Therefore "eetr" is also a valid answer.

Example 2:

Input:
"cccaaa" Output:
"cccaaa" Explanation:
Both 'c' and 'a' appear three times, so "aaaccc" is also a valid answer.
Note that "cacaca" is incorrect, as the same characters must be together.

Example 3:

Input:
"Aabb" Output:
"bbAa" Explanation:
"bbaA" is also a valid answer, but "Aabb" is incorrect.
Note that 'A' and 'a' are treated as two different characters.

题目大意

很喜欢这种题目很短,而栗子很多的题目~

题意就是把字符串按照字符出现的次数重新排列。

解题方法

字典

用python真的超级简单呀使用Counter类就能统计每个字符出现的次数,使用most_common函数就能按次序排列,最后字符与其出现的次数相乘就得到了字符串

下面是使用的一个例子的结果:

count = collections.Counter('abbdfas').most_common()
print count # 输出
[('a', 2), ('b', 2), ('s', 1), ('d', 1), ('f', 1)]

代码:

class Solution(object):
def frequencySort(self, s):
"""
:type s: str
:rtype: str
"""
count = collections.Counter(s).most_common()
res = ''
for c, v in count:
res += c * v
return res

优先级队列

C++默认的priority_queue是大顶堆。

C++构造把字符重复多次的新字符串的一个方法是append方法,第一个参数是整形表示重复次数,第二个参数是字符。

C++代码如下:

class Solution {
public:
string frequencySort(string s) {
string res;
unordered_map<char, int> count;
for (char c : s) count[c]++;
priority_queue<pair<int, char>> q;
for (auto a : count) q.push({a.second, a.first});
while (!q.empty()) {
auto t = q.top(); q.pop();
res.append(t.first, t.second);
}
return res;
}
};

排序

参考Grandyang的解法:http://www.cnblogs.com/grandyang/p/6231504.html

我们也可以使用STL自带的sort来做,关键就在于重写comparator,由于需要使用外部变量,记得中括号中放入&,然后我们将频率大的返回,注意一定还要处理频率相等的情况,要不然两个频率相等的字符可能穿插着出现在结果res中,这样是不对的。参见代码如下。

class Solution {
public:
string frequencySort(string s) {
unordered_map<char, int> m;
for (char c : s) ++m[c];
sort(s.begin(), s.end(), [&](char& a, char& b){
return m[a] > m[b] || (m[a] == m[b] && a < b);
});
return s;
}
};

日期

2018 年 3 月 4 日
2018 年 12 月 11 日 —— 双十一已经过去一个月了,真快啊。。

最新文章

  1. 1Z0-053 争议题目解析699
  2. js的三种继承方式及其优缺点
  3. [数据库连接池] Java数据库连接池--DBCP浅析.
  4. vue-cli + webpack 多页面实例应用
  5. 笔记本_Lenovo_G480
  6. django rest framework csrf failed csrf token missing or incorrect
  7. Note_Master-Detail Application(iOS template)_07_ YJYDetailViewController.m
  8. 新手学Android
  9. ubuntu: 环境搭建
  10. apache开源项目-- Velocity
  11. zoj 2588 Burning Bridges
  12. 关于canvas 易忘属性
  13. aspcms多图调用以及错误提示:3704
  14. mac 删除文件夹里所有的.svn文件
  15. .NET面试题系列(四)计算机硬件知识
  16. Kafka单机环境的部署
  17. 用 Fiddler 来弥补 Chrome Network 的小缺点
  18. 主席树学习笔记-hdu-2665
  19. 网络软工个人作业4——Alpha阶段个人总结
  20. iOS.AVCaptureSession

热门文章

  1. socket编程:多路复用I/O服务端客户端之select
  2. Ubuntu16.04安装 2.8.5版本Ansible
  3. 日常Java 2021/10/6
  4. Mapreduce中的join操作
  5. echarts饼图样式
  6. javaIO——输入输出流
  7. Can we access global variable if there is a local variable with same name?
  8. APP调用系统相册,使用3DTouch重压,崩溃
  9. lambda表达式快速创建
  10. Linux系统的负载与CPU、内存、硬盘、用户数监控的shell脚本