最简单的二分查找
题目:
L是用户传入的一个线性表,其中ElementType元素可以通过 > 、 == 、 < 进行比较,并且题目保证传入的数据是递增有序的。
函数BinarySearch要查找X在Data中的位置,即数组下标(注意:元素从下标1开始存储)。
找到则返回下标,否则返回一个特殊的失败标记NotFound
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
#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(List L); /* 裁判实现,细节不表。元素从下标1开始存储 */
Position BinarySearch(List L, ElementType X);
int main()
{
List L=0;
ElementType X;
Position P;
L = ReadInput(L);
cin >> X;
P = BinarySearch(L, X);
cout << P;
delete L;
return 0;
}
//以上为本题模板
Position BinarySearch(List L, ElementType X)
{
int Left = 1, Right = L->Last;//左右边界下标
while (Left <= Right)
{
int Mid = (Left + Right) / 2;//中间元素下标
if (X == L->Data[Mid])
return Mid;
else if(X > L->Data[Mid])
Left = Mid + 1;
else if (X < L->Data[Mid])
Right = Mid - 1;
}
return NotFound;
}
List ReadInput(List L)
{
L = new struct LNode;
int n;
cout << "Max Elements:10!" << endl;
cin >> n;
cout << "Make sure the input ranted from smallest to largest!" << endl;
for (int i = 1; i <= n; i++)
{
cin >> L->Data[i];
if (i == n)
L->Last = i;
}
return L;
}