插入排序
Posted Qunar_尤雪萍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入排序相关的知识,希望对你有一定的参考价值。
插入排序
/**
* 插入排序
* Created by xueping.you on 15-8-5.
*/
public class InsertSort
private final static Logger logger = LoggerFactory.getLogger(InsertSort.class);
public static void insertSort(int []unSortArray)
for(int i=1; i<unSortArray.length; i++)
if(unSortArray[i-1]>unSortArray[i])
int j=i;
int temp=unSortArray[i];
while (j>0 && unSortArray[j-1]>temp)
unSortArray[j]=unSortArray[j-1];
j--;
unSortArray[j]=temp;
public static void main(String []args)
int [] array = new int[]12,10,2,45,31,56,1,9;
logger.info("before:", array);
insertSort(array);
logger.info("after:",array);
result:
19:29:10.340 [main] INFO com.qyou.data.arithmetic.InsertSort - before:[12, 10, 2, 45, 31, 56, 1, 9]
19:29:10.352 [main] INFO com.qyou.data.arithmetic.InsertSort - after:[1, 2, 9, 10, 12, 31, 45, 56]
以上是关于插入排序的主要内容,如果未能解决你的问题,请参考以下文章
直接插入排序 ,折半插入排序 ,简单选择排序, 希尔排序 ,冒泡排序 ,快速排序 ,堆排序 ,归并排序的图示以及代码,十分清楚