gpt4 book ai didi

c双指针数组

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

以下是我当前的代码。我的教授告诉我们使用双指针来创建指针数组

 struct dict {
struct word **tbl;
int (*hash_fcn)(struct word*);
void (*add_fcn)(struct word*);
void (*remove_fcn)(struct word*);
void (*toString_fcn)(struct word*);
};

struct word {
char *s;
struct word *next;
};

结构字典 *hashtbl;

主要功能的一部分

  hashtbl=malloc(sizeof(struct dict));
hashtbl->tbl=malloc(sizeof(struct word)*256);
int i;
for(i=0;i<256;i++)
{
hashtbl->tbl[i]=NULL;
}

这是实现这种双指针数组的正确方法吗?

正在使用

hashtbl->tbl[i] = ..... 

访问该空间的正确方法?

最佳答案

hashtbl->tbl=malloc(sizeof(struct word)*256);

实际上应该是

hashtbl->tbl=malloc(sizeof(struct word *)*256);

因为 hashtbl->tbl 是一个 struct word * 的数组

关于c双指针数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8116740/

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