CS/Data Structure 선택 정렬 (Selection Sort) - 최댓값 혹은 최솟값을 하나씩 찾아서 한쪽으로 몰아넣는 방식. 예를들어 오름차순 정렬이라고 한다면, 배열 전체 순회하면서 최댓값을 찾음 맨 오른쪽에 배치. 정렬한 숫자 빼고 나머지 또 다 순회해서 그 다음으로 큰 값을 찾음. 정렬 안된 숫자 중 가장 오른쪽 배치 반복. int min_index; for (int i = 0; i < size - 1; i++) { min_index = i; for (int j = i + 1; j < size; j++) { if (arr[j] < arr[min_index]) { min_index = j; } } swap(arr[i], arr[min_index]); } Worst-case O(n^2) 성능 https://en.wikipedia.org/wiki/Selection_sort Selection sort - Wikipedia From Wikipedia, the free encyclopedia Sorting algorithm In computer science, selection sort is an in-place comparison sorting algorithm. It has an O(n2) time complexity, which makes it inefficient on large lists, and generally performs worse than the simil en.wikipedia.org 공유하기 게시글 관리 KwanJoong DEV 'CS > Data Structure' 카테고리의 다른 글 문자열 압축 문제 (String Compression) (0) 2023.10.31 순차 탐색 (Sequential Search) (0) 2023.10.31 삽입 정렬 (Insertion Sort) (0) 2023.10.30 정렬 알고리즘의 안정성 (Stability) (0) 2023.10.30 버블 정렬 (Bubble Sort) (0) 2023.10.30 Contents 당신이 좋아할만한 콘텐츠 순차 탐색 (Sequential Search) 2023.10.31 삽입 정렬 (Insertion Sort) 2023.10.30 정렬 알고리즘의 안정성 (Stability) 2023.10.30 버블 정렬 (Bubble Sort) 2023.10.30 댓글 0 + 이전 댓글 더보기