gpt4 book ai didi

c - 从 C 中的递归二分搜索返回 bool 值

转载 作者:行者123 更新时间:2023-11-30 21:08:36 25 4
gpt4 key购买 nike

我正在尝试在 C 中实现递归二分搜索。我正在使用 CS50 库将 bool 定义为类型。我的代码将在测试数组中找到输入的值。但是,当我使用 if 语句检查返回值 r 时,即使找到了数字,它通常也会返回 false。我的代码如下:

#include <stdio.h>
#include <cs50.h>

bool binarysearch(int value, int values [], int n, int lo, int hi);
int main(void)
{
// test array of 6 values sorted.
int values[] = {1 , 2, 3, 4 , 5, 6};
int n = 6;
int hi = values[n-1];
int lo = values[0];
// input from user
printf("What number\n");
int value = GetInt();
//search for value in test arary
bool r = binarysearch(value,values,n,lo,hi);
if (!r)
{
printf("not right\n");
return 1;
}
return 0;
}

bool binarysearch(int value, int values [], int n, int lo, int hi)
{
int mid;
mid = (lo + hi)/2;
// condition to avoid indexing error
if (((mid == 0) || (mid == n-1)) && (values[mid] != value) )
{
return false;
}
//check if value is at mid index in test array
if (values[mid] == value)
{
printf("Key Found\n");
return true;
}
// check right half of array
else if(value > values[mid])
{
binarysearch(value, values,n, mid+1, hi);
}
// check left half of array
else if(value <values[mid])
{
binarysearch(value, values,n,lo, mid-1);
}
return false;
}

最佳答案

此示例将执行二分搜索并返回一个 bool 值,与您的代码类似,但算法必须正确。

#include <stdio.h>
#include <stdbool.h>

bool binarysearch(int value, int values[], int n, int lo, int hi) {
int mid = (hi + lo) / 2;
if (lo <= hi) {
if (values[mid] == value) {
printf("Key found at index %d \n", mid);
return true;
}
else if (values[mid] > value)
return binarysearch(value, values, n, lo, mid);
else
return binarysearch(value, values, n, mid + 1, hi);;
}
else return 0;
}

main() {
int i, n, value;
int values[] = {1, 2, 3, 4, 5, 6};

int hi = values[n - 1];
int lo = values[0];
printf("What number? \n");
scanf("%d", &value);

if (!binarysearch(value, values, n, 0, 5))
printf("Number not present in array\n");
}

你可以试试这个算法online使用 1 到 13 之间的随机整数,如果您点击链接,找到该数字的几率为 50%。

关于c - 从 C 中的递归二分搜索返回 bool 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37648274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com