알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램을 작성하시오.
길이가 짧은 것부터
길이가 같으면 사전 순으로
첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.
조건에 따라 정렬하여 단어들을 출력한다. 단, 같은 단어가 여러 번 입력된 경우에는 한 번씩만 출력한다.
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
List<String> list = new ArrayList<>();
for (int i = 0; i < n; i++) {
list.add(br.readLine());
}
Set<String> stringSet = new HashSet<>(list);
List<String> list2 = new ArrayList<>(stringSet);
Collections.sort(list2, (o1, o2) -> {
if (o1.length() == o2.length()) return o1.compareTo(o2);
return o1.length() - o2.length();
});
for (String str : list2) {
System.out.println(str);
}
}
}
HashSet
을 이용하여 복사하였고, Collection.sort
에 내장된 Comparable
의 람다식을 통해서 정렬했다.