insertion sort(插入排序)

转载自:http://java2novice.com/java-sorting-algorithms/insertion-sort/


Insertion sort is a simple sorting algorithm, it builds the final sorted array one item at a time. It is much less efficient on large lists than other sort algorithms.

Advantages of Insertion Sort: 

1) It is very simple.
2) It is very efficient for small data sets.
3) It is stable; i.e., it does not change the relative order of elements with equal keys.
4) In-place; i.e., only requires a constant amount O(1) of additional memory space.

Insertion sort iterates through the list by consuming one input element at each repetition, and growing a sorted output list. On a repetition, insertion sort removes one element from the input data, finds the location it belongs within the sorted list, and inserts it there. It repeats until no input elements remain.

Insertion Sort 
Image source: “Introduction to Algorithms”, The MIT Press


The best case input is an array that is already sorted. In this case insertion sort has a linear running time (i.e., Θ(n)). During each iteration, the first remaining element of the input is only compared with the right-most element of the sorted subsection of the array. The simplest worst case input is an array sorted in reverse order. The set of all worst case inputs consists of all arrays where each element is the smallest or second-smallest of the elements before it. In these cases every iteration of the inner loop will scan and shift the entire sorted subsection of the array before inserting the next element. This gives insertion sort a quadratic running time (i.e., O(n2)). The average case is also quadratic, which makes insertion sort impractical for sorting large arrays. However, insertion sort is one of the fastest algorithms for sorting very small arrays, even faster than quicksort; indeed, good quicksort implementations use insertion sort for arrays smaller than a certain threshold, also when arising as subproblems; the exact threshold must be determined experimentally and depends on the machine, but is commonly around ten.


?
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
package com.java2novice.algos;
 
public class MyInsertionSort {
 
     public static void main(String a[]){
         int [] arr1 = { 10 , 34 , 2 , 56 , 7 , 67 , 88 , 42 };
         int [] arr2 = doInsertionSort(arr1);
         for ( int i:arr2){
             System.out.print(i);
             System.out.print( ", " );
         }
     }
     
     public static int [] doInsertionSort( int [] input){
         
         int temp;
         for ( int i = 1 ; i < input.length; i++) {
             for ( int j = i ; j > 0 ; j--){
                 if (input[j] < input[j- 1 ]){
                     temp = input[j];
                     input[j] = input[j- 1 ];
                     input[j- 1 ] = temp;
                 }
             }
         }
         return input;
     }
}

Output:
 2, 7, 10, 34, 42, 56, 67, 88,
- See more at: http://java2novice.com/java-sorting-algorithms/insertion-sort/#sthash.NxLpBJ36.dpuf
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值