-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelectionSort.java
36 lines (27 loc) · 844 Bytes
/
SelectionSort.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
33
34
35
36
public class SelectionSort {
private SelectionSort(){}
public static void sort(int[] arr){
// arr[0...i) 是有序的;arr[i...n) 是无序的
for(int i = 0; i < arr.length; i ++){
// 选择 arr[i...n) 中的最小值的索引
int minIndex = i;
for(int j = i; j < arr.length; j ++){
if(arr[j] < arr[minIndex])
minIndex = j;
}
swap(arr, i, minIndex);
}
}
private static void swap(int[] arr, int i, int j){
int t = arr[i];
arr[i] = arr[j];
arr[j] = t;
}
public static void main(String[] args){
int[] arr = {1, 4, 2, 3, 6, 5};
SelectionSort.sort(arr);
for(int e: arr)
System.out.print(e + " ");
System.out.println();
}
}