TreeMap是按照自身的顺序排序,比如数字的话,按照数字升序,ascII等。
import java.util.Scanner;
import java.util.TreeMap;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 注意 hasNext 和 hasNextLine 的区别
String s = sc.nextLine();
TreeMap<Character, Integer> map = new TreeMap<>();
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (!map.containsKey(c)) {
map.put(c, 1);
} else {
map.put(c, map.get(c) + 1);
}
}
int max = 0;
for (int i : map.values()) {
if (i > max) max = i;
}
while (max > 0) {
for (char c : map.keySet()) {
//TreeMap是按照自身的顺序排序,比如数字的话,按照数字升序,ascII等。
if (map.get(c) == max) {
System.out.print(c);
}
}
max--;
}
}
}