第十六周 项目一 (1) 插入排序之折半插入排序

来源:互联网 发布:跳跃网络 垃圾公司 编辑:程序博客网 时间:2024/05/17 18:47
/** Copyright (c) 2015, 烟台大学计算机与控制工程学院* All rights reserved.* 文件名称: main.cpp* 作者:巩凯强* 完成日期:2015年12月14日* 版本号:codeblocks** 问题描述:  插入排序之折半插入排序* 输入描述: 无* 程序输出: 见运行结果*/#include <stdio.h>#define MaxSize 20typedef int KeyType;    //定义关键字类型typedef char InfoType[10];typedef struct          //记录类型{    KeyType key;        //关键字项    InfoType data;      //其他数据项,类型为InfoType} RecType;              //排序的记录类型定义void InsertSort1(RecType R[],int n) //对R[0..n-1]按递增有序进行直接插入排序{    int i,j,low,high,mid;    RecType tmp;    for (i=1; i<n; i++)    {        tmp=R[i];        low=0;        high=i-1;        while (low<=high)        {            mid=(low+high)/2;            if (tmp.key<R[mid].key)                high=mid-1;            else                low=mid+1;        }        for (j=i-1; j>=high+1; j--)            R[j+1]=R[j];        R[high+1]=tmp;    }}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");    InsertSort1(R,n);    printf("排序后:");    for (i=0; i<n; i++)        printf("%d ",R[i].key);    printf("\n");    return 0;}


运行结果:

知识点总结:

在R[low..high](初始时low=0,high=i-1)中采用折半查找方法查找到插入R[i]的位置为R[high+1],再将R[high+1..i-11]中元素后移一个位置,并置R[high+1]=R[i]。

学习心得:

兴趣是人最好的老师,只要感兴趣,什么事都不难。

1 0
原创粉丝点击