找回密码
 立即注册

QQ登录

只需一步,快速开始

微信扫码登录

搜索
查看: 1784|回复: 1

[原创] 测试C 希尔排序

[复制链接]

10

主题

194

回帖

8717

积分

版主

积分
8717

VIP会员论坛元老

发表于 2017-2-11 11:52:52 | 显示全部楼层 |阅读模式
  1. //希尔排序
  2. #include "iostream.h"
  3. #include <process.h>
  4. //using namespace std;//使用命名空间时,要将头文件中的.h去掉
  5. #define N 50
  6. void shell_sort(int a[],int len)
  7. {
  8.     int h,i,j,temp;
  9.     for(h=len/2; h>0; h=h/2)//控制增量
  10.     {
  11.         for(i=h; i<len; i++)//这个for循环就是前面的直接插入排序
  12.         {
  13.             temp=a[i];
  14.             for(j=i-h; (j>=0&&temp<a[j]); j-=h)//循环打印数组的每个元素
  15.             {
  16.                 a[j+h]=a[j];
  17.             }
  18.             a[j+h]=temp;
  19.         }
  20.     }
  21. }

  22. void print_array(int a[], int len)
  23. {
  24.     for(int i=0; i<len; i++)
  25.     {
  26.         cout<<a[i]<<"";
  27.     }
  28.     cout<<endl;
  29. }

  30. void main()
  31. {
  32.     int a[N];
  33.     int b;
  34.     int M;
  35.     cout<<"请输入要排序的数目"<<endl;
  36.     cin>>M;


  37.     cout<<"请输入要排序的数"<<endl;
  38.     for(int i=0;i<M;i++)
  39.     {
  40.         cin>>b;
  41.         a[i]=b;
  42.     }
  43.     cout<<"beforeshellsort:";
  44.     print_array(a,M);
  45.     shell_sort(a,M);//进行shell排序
  46.     cout<<"aftershellsort:";
  47.     print_array(a,M);
  48.     //return0;
  49.     system("pause");
  50. }
复制代码

39

主题

2589

回帖

9805

积分

少校

积分
9805
发表于 2017-2-11 15:08:45 | 显示全部楼层
{:}
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

咨询QQ:1359218528|发帖须知!|Archiver|手机版|小黑屋|UG爱好者论坛 ( 京ICP备10217105号-2 )

GMT+8, 2025-1-19 14:17

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表