第十四周 项目一 验证算法 2.直接插入排序

来源:互联网 发布:linux一键搭建squid 编辑:程序博客网 时间:2024/06/05 10:18
  1. /* 
  2. * Copyright(c) 2017,烟台大学计算机学院 
  3. * All rights reserved. 
  4. * 文件名称:a
  5. * 作    者:张翠平 
  6. * 完成日期:2017 年 12 月 7 日 
  7. * 版 本 号:v1.0 
  8. * 
  9. * 问题描述:使用直接插入排序算法,完成序列的排序。
  10. * 输入描述:
  11. * 程序输出:排序后的结果。
  12. */  
  13. 问题代码:
  14. main.cpp
  15. #include <stdio.h>#define MaxSize 20typedef int KeyType;    //定义关键字类型typedef char InfoType[10];typedef struct          //记录类型{    KeyType key;        //关键字项    InfoType data;      //其他数据项,类型为InfoType} RecType;              //排序的记录类型定义void InsertSort(RecType R[],int n) //对R[0..n-1]按递增有序进行直接插入排序{    int i,j;    RecType tmp;    for (i=1; i<n; i++)    {        tmp=R[i];        j=i-1;            //从右向左在有序区R[0..i-1]中找R[i]的插入位置        while (j>=0 && tmp.key<R[j].key)        {            R[j+1]=R[j]; //将关键字大于R[i].key的记录后移            j--;        }        R[j+1]=tmp;      //在j+1处插入R[i]    }}int main(){    int i,n=10;    RecType R[MaxSize];    KeyType a[]= {9,8,7,6,5,4,3,2,1,0};    for (i=0; i<n; i++)        R[i].key=a[i];    printf("排序前:");    for (i=0; i<n; i++)        printf("%d ",R[i].key);    printf("\n");    InsertSort(R,n);    printf("排序后:");    for (i=0; i<n; i++)        printf("%d ",R[i].key);    printf("\n");    return 0;}



运行结果:

知识点总结和心得体会:
直接插入排序是一种相对比较容易理解的排序方法,可以用于一些简单的排序。
阅读全文
0 0
原创粉丝点击