본문 바로가기

Algorithm/Programers - Java

[프로그래머스(Java)] 특이한 정렬 / sort, Integer.compare(), compareTo()

 

Level. 0

 

문제

정수 n을 기준으로 n과 가까운 수부터 정렬하려고 합니다.
이때 n으로부터의 거리가 같다면 더 큰 수를 앞에 오도록 배치합니다.
정수가 담긴 배열 numlist와 정수 n이 주어질 때 numlist의 원소를 n으로부터 가까운 순서대로 정렬한 배열을 return하도록 solution 함수를 완성해주세요.

* 제한사항
- 1 ≤ n ≤ 10,000
- 1 ≤ numlist의 원소 ≤ 10,000
- 1 ≤ numlist의 길이 ≤ 100
- numlist는 중복된 원소를 갖지 않습니다.

 

풀이

import java.util.Arrays;
class Solution {
    public int[] solution(int[] numlist, int n) {
        int[] answer = new int[numlist.length];
        int[][] arr = new int[numlist.length][2];
        
        for(int i=0; i<numlist.length; i++){
            arr[i][0] = Math.abs(numlist[i]-n);
            arr[i][1] = numlist[i];
        }
        
        Arrays.sort(arr, (o1, o2) -> {
            if(o1[0] == o2[0]) 
                return Integer.compare(o2[1], o1[1]); // 2번째 value를 기준으로 내림차순
            else 
                return Integer.compare(o1[0], o2[0]); // 1번째 value를 기준으로 오름차순
        });
        
        for(int i=0; i<arr.length; i++){
            answer[i] = arr[i][1];
        }
        
        return answer;
    }
}

 

Integer.compare(x, y)

  • Integer 클래스의 compare() 메서드는 매개변수로 주어진 두 정수 값(x, y)을 비교하여 값을 반환한다.
  • (x == y) : 0을 반환
  • (x < y) : 0보다 작은 값을 반환
  • (x > y) : 0보다 큰 값을 반환

 


다른 풀이

import java.util.Arrays;

class Solution {
    public int[] solution(int[] numList, int n) {
        return Arrays.stream(numList)
                .boxed()
                .sorted((a, b) -> Math.abs(a - n) == Math.abs(b - n) ? b.compareTo(a) : Integer.compare(Math.abs(a - n), Math.abs(b - n)))
                .mapToInt(Integer::intValue)
                .toArray();
    }
}

 

compareTo()

기준값.compareTo(비교값)
  • 두 개의 값을 비교하여 int값으로 반환해주는 함수이다. 
  • 기준값과 비교값이 동일한 값일 경우 : 0
  • 기준값이 비교값보다 작은 경우 : -1
  • 기준값이 비교값보다 큰 경우 : 1

 

 


https://school.programmers.co.kr/learn/courses/30/lessons/120880

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

https://www.geeksforgeeks.org/java-integer-compare-method/

 

Java Integer compare() method - GeeksforGeeks

A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.

www.geeksforgeeks.org