Java的插入排序
1 说明
我们可以创建一个Java程序来使用插入排序对数组元素进行排序。插入对小元素是有好处的,仅因为它需要更多时间才能对大量元素进行排序。
2 程序实现
让我们看一个简单的Java程序,使用插入排序算法对数组进行排序。
/**
* 一点教程网: http://www.yiidian.com
*/
public class InsertionSortExample {
public static void insertionSort(int array[]) {
int n = array.length;
for (int j = 1; j < n; j++) {
int key = array[j];
int i = j-1;
while ( (i > -1) && ( array [i] > key ) ) {
array [i+1] = array [i];
i--;
}
array[i+1] = key;
}
}
public static void main(String a[]){
int[] arr1 = {9,14,3,2,43,11,58,22};
System.out.println("Before Insertion Sort");
for(int i:arr1){
System.out.print(i+" ");
}
System.out.println();
insertionSort(arr1);//sorting array using insertion sort
System.out.println("After Insertion Sort");
for(int i:arr1){
System.out.print(i+" ");
}
}
}
以上代码输出结果为:
Before Insertion Sort
9 14 3 2 43 11 58 22
After Insertion Sort
2 3 9 11 14 22 43 58
热门文章
优秀文章