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

希尔排序

时间:2018-12-27 03:32:35      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:pre   scanf   ios   scan   namespace   shellSort   iostream   space   \n   

#include<iostream>
#include<stdio.h>
using namespace std;
void shellsort(int a[],int n){
   int i,j;
   int jump=n;
   do{
     jump=jump/3+1;//浮动
     for (i=jump+1;i<=n;i++){
        if (a[i]<a[i-jump])
        {
            a[0]=a[i];
            for(j=i-jump;j>0 && a[0]<a[j];j-=jump)
            {
                a[j+jump]=a[j];//找的需要交换的位置
            }
            a[j+jump]=a[0];//进行交换
        }
     }
   }while(jump>1);
}
int main(){
  int a[100];
  int n;
  scanf("%d",&n);
  for (int i=1;i<=n;i++){
    scanf("%d",&a[i]);
  }
  shellsort(a,n);
  for (int i=1;i<=n;i++){
    printf("%d\n",a[i]);
  }
 return 0;
}

  

希尔排序

标签:pre   scanf   ios   scan   namespace   shellSort   iostream   space   \n   

原文地址:https://www.cnblogs.com/bluefly-hrbust/p/10182697.html

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