public class code_select {
// 插入排序
public static void insertSort(int [] arr){
if(arr == null || arr.length < 2){
return;
}
/**
* 0 - 0 有序完成(0已经是有序了)
* 0 - 1 有序完成
* 0 - 2 有序完成
*
*/
int N = arr.length;
for (int end = 1; end < N; end++) {
int newNumIndex = end;
while (newNumIndex - 1 >= 0 && arr[newNumIndex - 1] > arr[newNumIndex]){
swap(arr, newNumIndex-1, newNumIndex);
newNumIndex--;
}
}
}
public static void insertSort2(int [] arr){
// 边界值检查
if(arr == null || arr.length < 2){
return;
}
int N = arr.length;
/**
* 0 - 0 有序完成(0已经是有序了)
* 0 - 1 有序完成
* 0 - 2 有序完成
* pre表示当前位置的前一个位置
*/
for (int end = 1 ; end < N; end ++){
for (int pre = end - 1 ; pre >= 0 && arr[pre] > arr[pre + 1]; pre -- ){
swap(arr, pre, pre + 1);
}
}
}
public static void swap(int[] arr, int i , int j){
int temp = arr[j];
arr[j] = arr[i];
arr[i] = temp;
}
public static void printArray(int [] arr){
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}
public static void main(String[] args) {
int[] arr = {7, 1, 2, 3, 5, 8};
printArray(arr);
insertSort(arr);
printArray(arr);
}
}
版权声明:本文为weixin_44789391原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。