gpt4 book ai didi

c - bsearch() 返回 (nil),导致段错误

转载 作者:太空宇宙 更新时间:2023-11-04 08:32:11 25 4
gpt4 key购买 nike

bserach() 函数应该返回 NULL,但当它无法在给定数组中找到键时,我得到的是 (nil)。出了什么问题?

#include <stdio.h>
#include <stdlib.h>
int cmpfunc(const void * a, const void * b)
{
return ( *(int*)a - *(int*)b );
}
int values[] = { 5, 20, 29, 32, 63 };
int main ()
{
int *item;
int key = 10;

/* using bsearch() to find value 32 in the array */
item = (int*) bsearch (&key, values, 5, sizeof (int), cmpfunc);
if( item != NULL )
{
printf("Found item = %d\n", *item);
}
else
{
printf("Item = %d could not be found\n", *item);
}
return(0);
}

最佳答案

在你的代码中,在else部分

if( item != NULL ) 
{
printf("Found item = %d\n", *item);
}
else
{
printf("Item = %d could not be found\n", *item);
}

即使 itemNULL,您也会取消引用它 [*item]。请不要这样做。

要解决保持信息性输出消息完整的问题,也许您可​​以使用一些东西

printf(" Any item with related key value %d could not be found\n", key);

itemNULL 时。

关于c - bsearch() 返回 (nil),导致段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27821509/

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