第16周项目1-验证算法(3)冒泡排序

问题:

[cpp]  view plain  copy
  1. /*  
  2. * Copyright (c)2016,烟台大学计算机与控制工程学院  
  3. * All rights reserved.  
  4. * 文件名称:项目1-3.cbp  
  5. * 作    者:程德泉  
  6. * 完成日期:2016年12月15日  
  7. * 版 本 号:v1.0  
  8.   
  9. * 问题描述:验证冒泡排序 
  10.   
  11. * 输入描述:无  
  12. * 程序输出:测试数据  
  13. */    

1.直接插入排序


   
   
[cpp]  view plain  copy
  1. #include <stdio.h>  
  2. #define MaxSize 20  
  3. typedef int KeyType;    //定义关键字类型  
  4. typedef char InfoType[10];  
  5. typedef struct          //记录类型  
  6. {  
  7.     KeyType key;        //关键字项  
  8.     InfoType data;      //其他数据项,类型为InfoType  
  9. } RecType;              //排序的记录类型定义  
  10.   
  11. void InsertSort(RecType R[],int n) //对R[0..n-1]按递增有序进行直接插入排序  
  12. {  
  13.     int i,j;  
  14.     RecType tmp;  
  15.     for (i=1; i<n; i++)  
  16.     {  
  17.         tmp=R[i];  
  18.         j=i-1;            //从右向左在有序区R[0..i-1]中找R[i]的插入位置  
  19.         while (j>=0 && tmp.key<R[j].key)  
  20.         {  
  21.             R[j+1]=R[j]; //将关键字大于R[i].key的记录后移  
  22.             j--;  
  23.         }  
  24.         R[j+1]=tmp;      //在j+1处插入R[i]  
  25.     }  
  26. }  
  27.   
  28. int main()  
  29. {  
  30.     int i,n=10;  
  31.     RecType R[MaxSize];  
  32.     KeyType a[]= {9,8,7,6,5,4,3,2,1,0};  
  33.     for (i=0; i<n; i++)  
  34.         R[i].key=a[i];  
  35.     printf("排序前:");  
  36.     for (i=0; i<n; i++)  
  37.         printf("%d ",R[i].key);  
  38.     printf("\n");  
  39.     InsertSort(R,n);  
  40.     printf("排序后:");  
  41.     for (i=0; i<n; i++)  
  42.         printf("%d ",R[i].key);  
  43.     printf("\n");  
  44.     return 0;  
  45. }  

运行结果:


2.显示直接插入排序过程


   
   
[cpp]  view plain  copy
  1. #include <stdio.h>  
  2. #define MaxSize 20  
  3. typedef int KeyType;    //定义关键字类型  
  4. typedef char InfoType[10];  
  5. typedef struct          //记录类型  
  6. {  
  7.     KeyType key;        //关键字项  
  8.     InfoType data;      //其他数据项,类型为InfoType  
  9. } RecType;              //排序的记录类型定义  
  10.   
  11. void InsertSort(RecType R[],int n) //对R[0..n-1]按递增有序进行直接插入排序  
  12. {  
  13.     int i,j,k;  
  14.     RecType tmp;  
  15.     for (i=1; i<n; i++)  
  16.     {  
  17.         tmp=R[i];  
  18.         j=i-1;            //从右向左在有序区R[0..i-1]中找R[i]的插入位置  
  19.         while (j>=0 && tmp.key<R[j].key)  
  20.         {  
  21.             R[j+1]=R[j]; //将关键字大于R[i].key的记录后移  
  22.             j--;  
  23.         }  
  24.         R[j+1]=tmp;      //在j+1处插入R[i]  
  25.         printf("i=%d: ",i);  
  26.         for (k=0; k<n; k++)  
  27.             printf("%d ",R[k].key);  
  28.         printf("\n");  
  29.     }  
  30. }  
  31.   
  32. int main()  
  33. {  
  34.     int i,n=10;  
  35.     RecType R[MaxSize];  
  36.     KeyType a[]= {9,8,7,6,5,4,3,2,1,0};  
  37.     for (i=0; i<n; i++)  
  38.         R[i].key=a[i];  
  39.     printf("排序前:");  
  40.     for (i=0; i<n; i++)  
  41.         printf("%d ",R[i].key);  
  42.     printf("\n");  
  43.     InsertSort(R,n);  
  44.     printf("排序后:");  
  45.     for (i=0; i<n; i++)  
  46.         printf("%d ",R[i].key);  
  47.     printf("\n");  
  48.     return 0;  
  49. }  

运行结果:


3.折半插入排序


   
   
[cpp]  view plain  copy
  1. #include <stdio.h>  
  2. #define MaxSize 20  
  3. typedef int KeyType;    //定义关键字类型  
  4. typedef char InfoType[10];  
  5. typedef struct          //记录类型  
  6. {  
  7.     KeyType key;        //关键字项  
  8.     InfoType data;      //其他数据项,类型为InfoType  
  9. } RecType;              //排序的记录类型定义  
  10.   
  11. void InsertSort(RecType R[],int n) //对R[0..n-1]按递增有序进行直接插入排序  
  12. {  
  13.     int i,j,k;  
  14.     RecType tmp;  
  15.     for (i=1; i<n; i++)  
  16.     {  
  17.         tmp=R[i];  
  18.         j=i-1;            //从右向左在有序区R[0..i-1]中找R[i]的插入位置  
  19.         while (j>=0 && tmp.key<R[j].key)  
  20.         {  
  21.             R[j+1]=R[j]; //将关键字大于R[i].key的记录后移  
  22.             j--;  
  23.         }  
  24.         R[j+1]=tmp;      //在j+1处插入R[i]  
  25.         printf("i=%d: ",i);  
  26.         for (k=0; k<n; k++)  
  27.             printf("%d ",R[k].key);  
  28.         printf("\n");  
  29.     }  
  30. }  
  31.   
  32. int main()  
  33. {  
  34.     int i,n=10;  
  35.     RecType R[MaxSize];  
  36.     KeyType a[]= {9,8,7,6,5,4,3,2,1,0};  
  37.     for (i=0; i<n; i++)  
  38.         R[i].key=a[i];  
  39.     printf("排序前:");  
  40.     for (i=0; i<n; i++)  
  41.         printf("%d ",R[i].key);  
  42.     printf("\n");  
  43.     InsertSort(R,n);  
  44.     printf("排序后:");  
  45.     for (i=0; i<n; i++)  
  46.         printf("%d ",R[i].key);  
  47.     printf("\n");  
  48.     return 0;  
  49. }  
运行结果:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值