gpt4 book ai didi

c - bsearch 在循环中更改键

转载 作者:太空宇宙 更新时间:2023-11-04 03:53:54 24 4
gpt4 key购买 nike

有没有办法做这样的事情?

int key=50;
int loop=5;
int array[10]={...};
int* Ptr=NULL;


qsort(array, 10, sizeof(int), compareints);


while(loop>0){
Ptr=(int*)bsearch(&key,array,10,sizeof(int),compareints);

if(Ptr!=NULL){
printf("found %d", *Ptr);
}else{
printf("did not find %d", *Ptr);
}
key++;
loop--;
}

问题是 key 增加了,但是 bsearch 仍然搜索数字 50。我猜是因为 bsearch 中的 key 参数是一个常量指针。我知道如果所有键在搜索之前都存储在一个数组中,它就可以工作。但是,这不适合我的应用程序。任何帮助,将不胜感激。

最佳答案

转录评论 — 并添加演示代码。

您应该能够在循环的任何给定迭代中搜索任何键,因此您需要说明为什么您认为它仍在搜索 50...也许您需要显示数组的初始值设定项中有什么?会不会是您的 compareints() 函数运行异常?也许你也应该展示一下?您的“未找到”打印应该打印 key 而不是 *Ptr。为了理智起见,两个 printf() 格式字符串都应该以 \n 结尾。

此代码有效 - 并且不会显着改变您问题中显示的逻辑:

#include <stdlib.h>
#include <stdio.h>

static
int compareints(const void *v1, const void *v2)
{
int i1 = *(int *)v1;
int i2 = *(int *)v2;
if (i1 < i2)
return -1;
else if (i1 > i2)
return +1;
else
return 0;
}

int main(void)
{
int key = 50;
int loop = 5;
int array[10] = { 57, 49, 50, 51, 53, 27, 60, 51, 19, 99 };
int *ptr = NULL;

for (int i = 0; i < 10; i++)
printf("%3d", array[i]);
putchar('\n');
qsort(array, 10, sizeof(int), compareints);
for (int i = 0; i < 10; i++)
printf("%3d", array[i]);
putchar('\n');

while (loop > 0)
{
printf("seeking key %d: ", key);
ptr = (int *)bsearch(&key, array, 10, sizeof(int), compareints);

if (ptr != NULL)
printf("found %d\n", *ptr);
else
printf("did not find %d\n", key);
key++;
loop--;
}
return 0;
}

示例输出:

 57 49 50 51 53 27 60 51 19 99
19 27 49 50 51 51 53 57 60 99
seeking key 50: found 50
seeking key 51: found 51
seeking key 52: did not find 52
seeking key 53: found 53
seeking key 54: did not find 54

关于c - bsearch 在循环中更改键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18699142/

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