반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 매개변수탐색
- @P0
- dfs
- upper_bound
- 성적평가
- Kafka
- BOJ
- 이분탐색
- 퇴사통보
- 기술면접
- 백준
- 6987
- 13908
- softeer
- OFFSET
- 경력
- 파라메트릭
- Docker
- 오퍼레터
- 소프티어
- compose
- 백트래킹
- msSQL
- incr
- 처우산정
- BFS
- 처우협의
- 물채우기
- boj #19237 #어른 상어
- 연결요소
Archives
- Today
- Total
기술 블로그
Java vector sort 본문
728x90
반응형
C++ vector에서도 cmp 함수를 구현하는 것처럼 Java에서도 비슷하다.
연습문제 : https://www.acmicpc.net/problem/11650
아래는
First 먼저 오름차순
(First가 같으면) Second 오름차순
의 구현이다.
1 2 3 4 5 6 7 8 9 10 11 12 13 | Collections.sort(v, new Comparator<Pair>() { public int compare(Pair p1, Pair p2) { if(p1.First < p2.First) { return -1; } else if(p1.First == p2.First) { return Integer.compare(p1.Second, p2.Second); } else { return 1; } } }); | cs |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | import java.io.*; import java.util.*; public class Main { static int n; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); StringTokenizer st; Vector<Pair> v = new Vector<Pair>(); n = Integer.parseInt(br.readLine()); int x, y; for(int i=0; i<n; i++) { st = new StringTokenizer(br.readLine()); x = Integer.parseInt(st.nextToken()); y = Integer.parseInt(st.nextToken()); v.add(new Pair(x, y)); } Collections.sort(v, new Comparator<Pair>() { public int compare(Pair p1, Pair p2) { if(p1.First < p2.First) { return -1; } else if(p1.First == p2.First) { return Integer.compare(p1.Second, p2.Second); } else { return 1; } } }); for(Pair i : v) { System.out.println(i.First + " " + i.Second); } } } class Pair { int First, Second; Pair(int first, int second) { this.First = first; this.Second = second; } } | cs |
728x90
반응형
'JAVA' 카테고리의 다른 글
직렬화(Serialization)와 역직렬화(Deserialization), transient 변수 (0) | 2023.09.07 |
---|---|
어노테이션(Annotation) (0) | 2020.06.07 |
자바 가상 기계, JVM(Java Virtual Machine) (0) | 2020.01.29 |
우선순위 큐(PriorityQueue) compareTo (0) | 2020.01.19 |