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

/* 
* Copyright (c)2015,烟台大学计算机与控制工程学院 
* All rights reserved. 
* 文件名称:项目1-1.cbp 
* 作    者:刘晨筱
* 完成日期:2015年11月30日 
* 版 本 号:v1.0 
 
* 问题描述:折半查找算法的验证,用有序表{12,18,24,35,47,50,62,83,90,115,134} 作为测试序列,分别对90,47,100进行测试。
 
* 输入描述: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=11,x;
    int result;
    SeqList R;
    KeyType a[]= {12,18,24,35,47,50,62,83,90,115,134} ;
        scanf("%d",&x);
		{
		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");
	
    return 0;
}
运行结果:
(1)查找90:
<img src="https://img-blog.csdn.net/20151130163242935" alt="" />
(2)查找47:
<img src="https://img-blog.csdn.net/20151130162607486" alt="" />
(3)查找100:
<img src="https://img-blog.csdn.net/20151130162631561" alt="" />
知识点总结:
折半查找是基于顺序存储的查找方式较快的一种算法。
学习心得:
自己改了改代码,得出结果还是开心的。
</pre><pre name="code" class="cpp">

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值