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

希尔排序

时间:2017-12-30 22:42:25      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:body   step   post   span   style   pre   希尔   pos   return   

 

    public static int[] ShellInsert(int[] arr){
        int step = arr.length/2;  
        while(step >= 1){
            for(int i=step;i<arr.length;i++){
                int temp = arr[i];
                int j = 0;
                for(j=i-step;j>=0 && temp<arr[j];j-=step){
                    arr[j+step] = arr[j];
                }
                arr[j+step] = temp;
            }
            step /= 2;
        }
        return arr;
    }

 

希尔排序

标签:body   step   post   span   style   pre   希尔   pos   return   

原文地址:https://www.cnblogs.com/weishao-lsv/p/8151281.html

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