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

希尔排序(Go语言)

时间:2017-08-10 01:09:06      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:[]   比较   class   交换   序号   logs   bsp   rem   else   

func ShellSort(num []int) {

    //increment相隔数量
    for increment:=len(num)/2;increment>0 ;increment/=2 {
        //i序号较大的数组下标,i ,j进行比较
        
        for i := increment; i < len(num); i++ {
            //进行交换
            temp:=num[i]
            //按照increment,数组从j到0进行交换比较
            for j:= i - increment; j >= 0; j -= increment {
                if temp < num[j] {
                    num[j+increment]=num[j]
                    num[j]=temp
                    temp=num[j]
                }else {//由于数组前面按照increment已经排好序,如果temp>num[j],则不必继续比较交换下去
                    break
                }
            }

        }

    }

}

 

希尔排序(Go语言)

标签:[]   比较   class   交换   序号   logs   bsp   rem   else   

原文地址:http://www.cnblogs.com/xxzhuang/p/7333753.html

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