码迷,mamicode.com
首页 > 编程语言 > 详细

插入排序

时间:2018-07-05 01:24:05      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:pre   import   array   for   length   --   port   public   []   

import java.util.*;
public class Insert{
    public void getInsert(int[] array){
        if(array == null || array.length == 0) return;
        int j=0;
        for(int i=1;i<array.length;i++){
            int temp = array[i];
            for(j=i;j>0&&(array[j-1]>temp);j--){
                array[j]=array[j-1];
            }
            array[j] = temp;
        }
    }
    public static void main(String[] args){
        int[] array = {9,8,7,6,5,4,3,2,1};
        Insert i = new Insert();
        i.getInsert(array);
        System.out.println(Arrays.toString(array));
    }
}

 

插入排序

标签:pre   import   array   for   length   --   port   public   []   

原文地址:https://www.cnblogs.com/yingpu/p/9266169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!