正确的二分法数据查找算法——百度百科里的那个算法是错误的

本文分享了一个经过验证无误的二分查找算法实现,并通过示例展示了如何使用该算法在一个有序数组中查找指定元素的位置。

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

正确的二分法数据查找算法,百度百科里有一个算法,很多人都在研究,但是我跑过之后结果是错的,有问题,此算法经本人验证无误,贴出来与大家共享。
//dichotomy algorithm
#include <iostream>

using namespace std;
const int NUM = 16;
const int Found(const int a[], const int obj, const intlen);
int main()
{
    int a[NUM]={-1,11,23,56,98,129,189,452,654,789,1023,2892,5022,6344,7680,9988};
    int isFound = NUM;
    for (int i = 0; i < NUM; i++)
    {
       cout << "a["<< i <<"]=" << a[i]<< "\t";
       if ((i+1)%3 == 0)
           cout<< '\n';
    }
    cout<< endl;
    isFound =Found(a,56,NUM);
    if (isFound == NUM)
       cout << "Data not found.\n";
    else
       cout << "Data is a[" << isFound << "]" << endl;
    return 0;
}

const int Found(const int a[], const int obj, const intlen)
{
    int front = 0, end =len-1, i=(front+end)/2;
    while ( front < end )
    {
       if (a[i] == obj)
           returni;
       else
           if (a[i] < obj)
           {
              front = i;
           }
           else
           {
              end = i;
           }
       i = (end+front)/2;
    }
    return len;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

互联网速递520

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值