欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

二分查找

程序员文章站 2022-05-08 19:12:38
...
#include <stdio.h>
#include <stdlib.h>

#define MAXSIZE 10
#define NotFound 0
typedef int ElementType;

typedef int Position;
typedef struct LNode *List;
struct LNode {
    ElementType Data[MAXSIZE];
    Position Last; /* 保存线性表中最后一个元素的位置 */
};

List ReadInput(); /* 裁判实现,细节不表。元素从下标1开始存储 */
Position BinarySearch( List L, ElementType X );

int main()
{
    List L;
    ElementType X;
    Position P;
    
    L = ReadInput();
    scanf("%d", &X);
    P = BinarySearch( L, X );
    printf("%d\n", P);
    
    return 0;
}

Position BinarySearch( List L, ElementType X ){
    ElementType left=1;
    ElementType right=L->Last;
    while (left<=right){
        ElementType mid=(left+right)/2;
        if (X==L->Data[mid]) {
            return mid;
        }
        else if(X>L->Data[mid])
            left=mid+1;
        else
            right=mid-1;
    }
    return NotFound;
}