https://www.acmicpc.net/problem/20291
import java.io.*;
import java.util.*;
public class Main {
static int N;
static Map<String, Integer> map = new TreeMap<>();
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
for (int i = 0; i < N; i++) {
String str = br.readLine();
String ex = str.substring(str.indexOf('.') + 1);
if (map.containsKey(ex)) {
map.put(ex, map.get(ex) + 1);
} else {
map.put(ex, 1);
}
}
for (String key : map.keySet()) {
System.out.println(key + " " + map.get(key));
}
}
}
HashMap과 달리 TreeMap은 순서를 보장!
key를 기준으로 정렬시킴!
map.put(ex, map.get(ex) + 1);
map.keySet()
Set<K>
for (String key : map.keySet()) {
System.out.println(key + " " + map.get(key));
}
Map의 모든 항목을 순회해야 할 때 자주 사용