码迷,mamicode.com
首页 > 其他好文 > 详细

希尔排序

时间:2014-08-30 18:55:09      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   for   div   log   c   as   return   

#include<stdio.h>

void ShellSort(int array[],int length)
{
    int i,j,h,temp;
    for(h=length/2;h>0;h=h/2)
    {
        for(i=h;i<length;i++)
        {
            temp=array[i];
            for(j=i-h;j>=0;j-=h)
            {
                if(temp<array[j])
                {
                    array[j+h]=array[j];
                }
                else break;
            }
            array[j+h]=temp;
        }
    }
}

int main()
{
    int a[]={3,1,5,3,4,7,1};
    ShellSort(a,7);
    for(int i=0;i<7;i++) printf("%d ",a[i]);
    return 0;
}

  

希尔排序

标签:blog   io   ar   for   div   log   c   as   return   

原文地址:http://www.cnblogs.com/zsboy/p/3946661.html

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