✅Notion: Hyunsb_SelectionSort
public int[] selectionSort(int[] arr){
for(int i=0; i<arr.length; i++){
int minIdx = i;
for(int j=i+1; j<arr.length; j++)
if(arr[minIdx] > arr[j])
minIdx = j;
int tmp = arr[minIdx];
arr[minIdx] = arr[i];
arr[i] = tmp;
}
return arr;
}
✅Notion: Hyunsb_SelectionSort
선택 정렬 (Selection Sort)
Selection Sort는 해당 순서에 원소를 넣을 위치는 정해져 있으며, 어떤 원소를 넣을 지 ‘선택’ 하여 교체, 정렬하는 알고리즘이다.
cyclic-comfort-69d.notion.site
'알고리즘' 카테고리의 다른 글
[Searching] 결정 알고리즘 (Decision Algorithm) (0) | 2022.12.02 |
---|---|
[Searching] 이분 검색 (Binary Search) (0) | 2022.12.02 |
[Sorting and Searching] 삽입 정렬 (Insertion Sort) (0) | 2022.11.24 |
[Sorting and Searching] 버블 정렬 (Bubble Sort) (1) | 2022.11.24 |