在一个有序数组中查找某个具体数字

在一个有序数组中查找某个具体数字,假设我们查找n

#include <stdio.h>
#include <stdlib.h>
int main()
{
int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
int k = 7;
int sz = sizeof(arr) / sizeof(arr[0]);//计算元素个数
int left = 0;//左下标
int right = sz - 1;//右下标
while (left<=right)
{

	int mid = (left + right) / 2;
	if (arr[mid] > k)
	{
		right = mid - 1;
	}
	else if (arr[mid] < k)
	{
		left = mid + 1;
	}
	else
	{
		printf("找到了,下标是:%d\n", mid);
		break;
	}
}
if (left>right)
{
	printf("找不到\n");
}

system(“pause”);
return 0;
}
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_54748281/article/details/113496985