[알고리즘] Selection Sort

SeongWon Oh·2021년 8월 30일
0

알고리즘

목록 보기
2/12
post-thumbnail
post-custom-banner

Selection Sort

개념

  • n개의 데이터 중에서 최소값을 찾아 첫 번째 데이터 위치에 놓고, 나머지 (n-1)
    개 중에서 다시 최소값을 찾아 두 번째 데이터 위치에 놓는 방식을 반복하여 정렬하는 방식이다.
  • 평균과 최악의 시간복잡도는 O(n2n^2)이다.

예시


Java 구현 코드

public class SelectionSort {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		int[] arr = {3,8,43,2,9,15,61,54,3,94,2,10};
		
		int temp;
		int lowestIdx = 0;
		for (int i = 0; i<arr.length-1 ; i++) { // n-1번 수행하면 마지막은 자연스럽게 가장 큰 수가 위치하게 되어서 length -1번 수행한다.
			for (int j = i+1; j<arr.length; j++) { // 현재 위치인 i번째 이후의 data중에서 가장 작은 수를 찾는 것이기에 i+1부터 끝까지 수행
				if (arr[lowestIdx] > arr[j]) {
					lowestIdx = j;
				}
			}
			temp = arr[i];
			arr[i] = arr[lowestIdx];
			arr[lowestIdx] = temp;
		}		
		for (int i = 0; i<arr.length ; i++) {
			System.out.println(arr[i]);
		}
	}
}
profile
블로그 이전했습니다. -> https://seongwon.dev/
post-custom-banner

0개의 댓글