451.根据字符出现频率排序(Java---字符的统计)

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

示例 1:
输入:
“tree”
输出:
“eert”
解释:
'e’出现两次,'r’和’t’都只出现一次。
因此’e’必须出现在’r’和’t’之前。此外,"eetr"也是一个有效的答案。

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

示例 3:
输入:
“Aabb”
输出:
“bbAa”
解释:
此外,"bbaA"也是一个有效的答案,但"Aabb"是不正确的。
注意’A’和’a’被认为是两种不同的字符。

class Solution {
    public String frequencySort(String s) {
    	//哈希表,键为字符,值为字符出现次数
        Map<Character, Integer> hm = new HashMap<>();
        for(char c : s.toCharArray())
            hm.put(c, hm.getOrDefault(c, 0)+1);
        int max = 0;
        StringBuffer sb = new StringBuffer();
        while(!hm.isEmpty()) {
            Set<Character> tempSet = hm.keySet();
            Iterator<Character> tempIt = tempSet.iterator();
            char ch = ' ';
            //遍历找到值最大的键
            while(tempIt.hasNext()) {
                char tempCh = tempIt.next();
                int temp = hm.get(tempCh);
                if(temp > max) {
                    ch = tempCh;
                    max = temp;
                }
            }
            //根据值大小追加字符
            while(max-- > 0)
                sb.append(ch);
            //移除值最大的键
            hm.remove(ch);
        }
        return sb.toString();
    }
}

你可能感兴趣的:(力扣)