第十四周项目1-验证算法(1)-折半查找算法

/*  
 * Copyright (c) 2016, 烟台大学计算机与控制工程学院  
 * All rights reserved。  
 * 文件名称 :1.cpp  
 * 作    者 :杨俊杰 
 * 完成日期 :2016年 12月2日  
 * 版 本 号 :v1.0  
 * 问题描述 :
 * 输出描述 :

 */

[cpp]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. #include <stdio.h>  
  2. #define MAXL 100  
  3. typedef int KeyType;  
  4. typedef char InfoType[11];  
  5. typedef struct  
  6. {  
  7.     KeyType key;                //KeyType为关键字的数据类型  
  8.     InfoType data;              //其他数据  
  9. } NodeType;  
  10. typedef NodeType SeqList[MAXL];     //顺序表类型  
  11.   
  12. int BinSearch(SeqList R,int n,KeyType k)  
  13. {  
  14.     int low=0,high=n-1,mid;  
  15.     while (low<=high)  
  16.     {  
  17.         mid=(low+high)/2;  
  18.         if (R[mid].key==k)      //查找成功返回  
  19.             return mid+1;  
  20.         if (R[mid].key>k)       //继续在R[low..mid-1]中查找  
  21.             high=mid-1;  
  22.         else  
  23.             low=mid+1;          //继续在R[mid+1..high]中查找  
  24.     }  
  25.     return 0;  
  26. }  
  27.   
  28. int main()  
  29. {  
  30.     int i,j,n=11;  
  31.     int result;  
  32.     SeqList R;  
  33.     KeyType a[]= {12,18,24,35,47,50,62,83,90,115,134},x;  
  34.     for(j=0;j<=2;j++)  
  35. <span style="white-space:pre">  </span>{scanf("%d",&x);  
  36. <span style="white-space:pre">  </span>for (i=0; i<n; i++)  
  37. <span style="white-space:pre">  </span> R[i].key=a[i];  
  38.     result = BinSearch(R,n,x);  
  39.     if(result>0)  
  40.         printf("序列中第 %d 个是 %d\n",result, x);  
  41.     else  
  42.         printf("木有找到!\n");}  
  43.     return 0;  
  44. }  
运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值