bsearch() returns (nil),导致分段错误
bsearch() returns (nil), causes segmentation fault
bserach() 函数应该 return 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);
}
即使 item
是 NULL
,您也在取消引用它 [*item
]。请不要这样做。
要解决保持信息性输出消息完好无损的问题,也许您可以使用一些东西
printf(" Any item with related key value %d could not be found\n", key);
当 item
为 NULL
时。
bserach() 函数应该 return 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);
}
即使 item
是 NULL
,您也在取消引用它 [*item
]。请不要这样做。
要解决保持信息性输出消息完好无损的问题,也许您可以使用一些东西
printf(" Any item with related key value %d could not be found\n", key);
当 item
为 NULL
时。