十三周 项目1(1)

来源:互联网 发布:史蒂文斯教练知乎 编辑:程序博客网 时间:2024/06/05 09:59
问题及描述:
/*   烟台大学计算机学院      文件名称:ss.cpp      作者:李金朴   完成日期:2017年11月26日      问题描述:验证折半查找算法。            请用有序表{12,18,24,35,47,50,62,83,90,115,134}作为测试序列,            分别对查找90、47、100进行测试。      输入描述:无     输出描述:输出查找位置和结果     */             #include <stdio.h>    #define MAXL 100    typedef int KeyType;    typedef char InfoType[10];    typedef struct    {        KeyType key;                //KeyType为关键字的数据类型        InfoType data;              //其他数据    } NodeType;    typedef NodeType SeqList[MAXL];     //顺序表类型        int BinSearch(SeqList R,int n,KeyType k)    {        int low=0,high=n-1,mid;        while (low<=high)        {            mid=(low+high)/2;            if (R[mid].key==k)      //查找成功返回                return mid+1;            if (R[mid].key>k)       //继续在R[low..mid-1]中查找                high=mid-1;            else                low=mid+1;          //继续在R[mid+1..high]中查找        }        return 0;    }        int main()    {        int i,n=10;        int result;        int result2;        int result3;        SeqList R;        KeyType a[]= {12,18,24,35,47,50,62,83,90,115,134},x=90,y=47,z=100;        for (i=0; i<n; i++)            R[i].key=a[i];        result = BinSearch(R,n,x);        if(result>0)            printf("序列中第 %d 个是 %d\n",result, x);        else            printf("木有找到!\n");                  result2 = BinSearch(R,n,y);        if(result2>0)            printf("序列中第 %d 个是 %d\n",result2, y);        else            printf("木有找到!\n");                  result3= BinSearch(R,n,z);        if(result3>0)            printf("序列中第 %d 个是 %d\n",result3, z);        else            printf("木有找到!\n");        return 0;    }    

运行结果:

学习心得:

学到了折半查找算法的应用


原创粉丝点击