Home 백준 1427번(소트인사이드)[JAVA]
Post
Cancel

백준 1427번(소트인사이드)[JAVA]

소트인사이드

풀이

선택 정렬로 푼 코드이다.

소스 코드

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
import java.util.*;

public class 소트인사이드 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String num = sc.next();
		int[] arr = new int[num.length()];
		
		for (int i = 0; i < num.length(); i++) {
			arr[i] = Integer.parseInt(num.substring(i,i+1));
		}
		
		for (int i = 0; i < num.length(); i++) {
			int maxIdx = i;
			for (int j = i+1; j < num.length(); j++) {
				if (arr[j] > arr[maxIdx]) {
					max = j;
				}
			}
			if (arr[maxIdx] > arr[i]) {
				int tmp = arr[i];
				arr[i] = arr[maxIdx];
				arr[maxIdx] = tmp;
			}
		}
		
		
		for (int i = 0; i < num.length(); i++) {
			System.out.print(arr[i]);
		}
	}
}

태클 감사합니다.
조언 환영입니다.

This post is licensed under CC BY 4.0 by the author.