二分查找

5 篇文章 0 订阅
#include<iostream>
using namespace std;
#define MAXSIZE 1000
template<class Type>
//在n个数中使用二分查找
int BinarySearch(Type a[],const Type& x,int n)
{
	int left=0;int right=n-1;
	while(left<=right)
	{
		int middle;
		middle=(left+right)/2;
		if(x==a[middle])
			return middle;
		if(x>a[middle])
			left=middle+1;
		else
			right=middle-1;
	}
	return -1;
}
//对自然数的二分查找
int main()
{
	int a[MAXSIZE];
	int k=0;
	int x;
	cout<<"请从小到大输入你的查找范围,请务必输入自然数(以-1结束):"<<endl;
	int m;
	cin>>m;
	while(m!=-1)
	{
		if(m<0)
		{
			cout<<"Your input is illegal!Please try again:";
		}
		else
		{
			a[k]=m;
			k++;
		}
		cin>>m;
	}
	cout<<"Please input the number you want to search:";
	cin>>x;
	cout<<"位置是:"<<"a["<<BinarySearch(a,x,k)<<"]"<<endl;
	return 0;
}
注意这里的数不能乱输
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值