对分查找

本文深入探讨了二分查找算法的原理、实现过程及其在有序数组中的高效搜索应用,通过实例代码演示了如何使用二分查找进行数据查找。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

//BinarySearch.h
#ifndef BINARYSEARCH_H
#define BINARYSEARCH_H 

#define NotFound -1

#include <stdio.h>

int  BinarySearch(int *, int , int );

#endif

//BinarySearch.c

#include "BinarySearch.h"

int BinarySearch(int array[], int x, int size)
{
	int low = 0;
	int high = size - 1;
	int mid;

	while(low <= high)
	{
		mid = (low + high)/2;

		if (array[mid] < x)
		{
			low = mid + 1;
		}
		else if (array[mid] > x)
		{
			high = mid - 1;
		}
		else
			return mid;
	}
	
	return NotFound;
}

//main.c

#include "BinarySearch.h"

int main(void)
{
	int array[] = {1,2,3,4,5,6,7,8,9,10,11};
	int size = sizeof(array)/sizeof(*array);
	int x = 5;

	int index = BinarySearch(array, x, size);

	printf("the index is %d\n",index);
	
	return 0;
}
//前提是升序
思路:折半比较,array[mid]小于x说明在mid的右侧,将下限置mid+1,array[mid]大于x说明在mid的左侧,将上限置mid-1;其中的现在条件就是low<=high.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值