gpt4 book ai didi

c - 不明白 tsearch 返回指针是如何工作的

转载 作者:行者123 更新时间:2023-12-02 00:00:15 24 4
gpt4 key购买 nike

我一直在努力弄清楚 tsearch 库是如何工作的,但我已经到了完全不知所措的地步。这是我的代码:

#include <stdio.h>
#include <getopt.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <stdlib.h>
#include <dirent.h>
#include <utime.h>
#include <sys/wait.h>
#include <sys/msg.h>
#include <signal.h>
#include <ctype.h>
#include <search.h>

int compare (const void *a, const void *b);
void action(const void *nodep, VISIT value, int level);

struct word {
char word[100];
int occur;
};

int main (void) {
void *root = NULL;
char *words[] = {"a","b","c","a"};
struct word *entry = malloc(10 * sizeof(struct word));
struct word *ptr;
struct word *ptr2;
int i;

for (i=0;i<4;i++) {
memcpy(entry[i].word,words[i],100);
entry[i].occur = 1;
ptr = tfind(&entry[i],&root,compare);
if (ptr == NULL) {
tsearch(&entry[i],&root,compare);
}
else {
printf("%i\n",ptr->occur);
printf("%i\n",entry[0].occur);
entry[0].occur++;
}
}
twalk (root, action);
//tdestroy (&rootp,freefct);
return 0;
}

int compare (const void *a, const void *b) {
const struct word *w1, *w2;

w1 = (const struct word *) a;
w2 = (const struct word *) b;

return strcmp(w1->word, w2->word);
}

void action(const void *nodep, VISIT value, int level) {
struct word *w = *((struct word **) nodep);
switch (value) {
case leaf:
case postorder:
printf("%s: %i\n",w->word, w->occur);
break;
default:
break;
}
return;
}

现在,我认为 ptr 应该指向 entry[0](因为那是它找到的值所在的位置)并且 ptr->occur 应该给我“a”的出现值。但事实并非如此。它给了我 0,如下面的结果所示:

01个a2乙:1c: 1

改变 entry[0] 的值确实会改变它在行走过程中打印的内容。

我已经尝试了所有我能想到的解除引用或转换 ptr 的组合,将其声明为 void* 或 struct word*...

所以我的问题基本上是:

给定 tfind 的返回值(以及应该将其声明为什么),我如何访问结构中的值?

最佳答案

tfind 的返回值不是条目,它是指向树内部节点结构的指针,其第一个元素是指向条目的指针。由于节点结构是不透明的,您可以将 ptr 视为结构词 **。

如果您将 else 部分重写为

    else {
printf("i=%d ptr=%p *ptr=%p entry=%p,%p,%p,%p\n", i, ptr, *(struct word **)ptr, entry, entry+1, entry+2, entry+3);
printf("wrong: %i\n",ptr->occur);
printf("right: %i\n",(*(struct word **)ptr)->occur);
printf("right: %i\n",entry[0].occur);
entry[0].occur++;
}

你会得到(至少在我的机器上)

i=3 ptr=0x8f32430 *ptr=0x8f32010 entry=0x8f32010,0x8f32078,0x8f320e0,0x8f32148
wrong: 0
right: 1
right: 1
a: 2
b: 1
c: 1

如您所见,指向 elem[0] 的不是 ptr,而是 *ptr。

关于c - 不明白 tsearch 返回指针是如何工作的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21840116/

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