阅读背景:

第14周项目1-2

来源:互联网 
/*
烟台大学计算机学院

文件名称:xiangmu.cpp

作者:于琛

完成日期:2017年12月3日

问题描述:用序列{57, 40, 38, 11, 13, 34, 48, 75, 6, 19, 9, 7}作为测试数据,运行并本周视频中所讲过的算法对应 程序,
观察运行结果并深刻领会算法的思路和实现方法:(1)直接插入排序;(2)希尔排序

输入描述:无

输出描述:排序后的序列

*/
//直插法:

#include <stdio.h>
#define MaxSize 20
typedef 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=12;
    RecType R[MaxSize];
    KeyType a[]= {57,40,38,11,13,34,48,75,6,19,9,7};
    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;
}
/*
烟台大学计算机学院

文件名称:xiangmu.cpp

作者:于琛

完成日期:201



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: