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

/*       
*烟台大学计算机与控制工程学院        
*作    者:臧新晓      
*完成日期:2016年11月25日    
*问题描述:请用有序表{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 BinSearch1(SeqList R,int low,int high,KeyType k)      
{      
    int mid;      
    if (low<=high)      //查找区间存在一个及以上元素      
    {      
        mid=(low+high)/2;  //求中间位置      
        if (R[mid].key==k) //查找成功返回其逻辑序号mid+1      
            return mid+1;      
        if (R[mid].key>k)  //在R[low..mid-1]中递归查找      
            BinSearch1(R,low,mid-1,k);      
        else              //在R[mid+1..high]中递归查找      
            BinSearch1(R,mid+1,high,k);      
    }      
    else      
        return 0;      
}      
    
int main()      
{      
    int i,n=11;      
    int result;      
    SeqList R;      
    KeyType a[]= {12,18,24,35,47,50,62,83,90,115,134},x=100;      
    for (i=0; i<n; i++)      
        R[i].key=a[i];      
    result = BinSearch1(R,0,n-1,x);      
    if(result>0)      
        printf("序列中第 %d 个是 %d\n",result, x);      
    else      
        printf("没有找到╮(╯_╰)╭!\n");      
    return 0;      
}      



知识点总结:

折半查找就是把一组数据对半分开,一半一半的查找,节省了查找的时间,查找的数据必须是以顺序方式存储。




发布了80 篇原创文章 · 获赞 11 · 访问量 3万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章