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

时间:2014-02-17 22:00:17

标签: c binary-search-tree

我一直在试图弄清楚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-&gt;出现应该给出“a”的出现值。但事实并非如此。它给了我0,如下面结果所示:

0 1 a2 b:1 c:1

更改条目[0]的值会改变步行期间打印的内容。

我已尝试过解除引用或构建ptr的所有组合,我可以想到,将其声明为void *或结构词* ...

所以我的问题基本上是:

给定tfind的返回(以及应该声明的内容),如何访问struct中的值?

1 个答案:

答案 0 :(得分:3)

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

如果您将其他部分重写为

    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。