二分法查找

最简单的二分查找
题目:
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;
}

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值