如何用二分法查找数组的元素,查找不到打印错误信息。C语言

 我来答
terranlong
2012-03-07 · TA获得超过7294个赞
知道大有可为答主
回答量:2660
采纳率:0%
帮助的人:3999万
展开全部
曾经给别人写过,不重写了,看看还有什么问题

#include <stdio.h>
#define N 10
int Find(int* arr, int size, int n)
{
int pos;
int upper = size - 1;
int lower = 0;
while (upper - lower > 1)
{
pos = (upper + lower) / 2;
if (arr[pos] == n)
{
return pos;
}
if (arr[pos] > n)
{
upper = pos;
}
else
{
lower = pos;
}
}
return -1;
}
void main()
{
int a[N] = {1, 3, 5, 7, 9, 10, 13, 15, 17, 18};
int n = 4;
int pos = Find(a, N, n);
if (pos != -1)
{
printf("%d is in the %d of a[]\n", n, pos + 1);
}
else
{
printf("no found\n");
}
}
来自:求助得到的回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式