Dev.baelanche

[백준 10867] 중복 빼고 정렬하기 본문

Data Structure & Algorithm/PS - JAVA

[백준 10867] 중복 빼고 정렬하기

baelanche 2019. 7. 3. 19:59
반응형

 

입력받은 수들을 트리에 넣고 꺼내어주면 된다.

 

필자는 자바를 사용하는 관계로 TreeSet을 썼는데 내부적으로 정렬과 중복제거를 해준다.

 

ublic class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        
        Set<Integer> set = new TreeSet<Integer>();
        while(n-->0) {
            set.add(sc.nextInt());
        }
        
        Iterator it = set.iterator();
        
        while(it.hasNext()) {
            System.out.print(it.next() + " ");
        }
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 2636] 치즈  (0) 2019.07.04
[백준 14430] 자원 캐기  (0) 2019.07.03
[백준 1389] 케빈 베이컨의 6단계 법칙  (0) 2019.07.03
[백준 13909] 창문 닫기  (0) 2019.07.03
[백준 9625] BABBA  (0) 2019.07.02
Comments