好吧,我正在实现一个带有结构形式数组的哈希表,如下所示:
int SIZE = 769;
int entries=0;
typedef struct entry {
long id;
long n_article;
long id_rev;
long uni_rev;
} Entry;
typedef Entry * THash;
THash init_THash ()
{
int i;
THash t = (THash) malloc(SIZE*sizeof(struct entry));
//...
return t;
}
我有一个向哈希表添加一些东西的函数,如果条目超过 SIZE 的 70%,我会调整表的大小。
THash resize_THash (THash h){
int i;
int prime = SIZE*2;
h = (THash) realloc (h,(prime)*sizeof(struct entry));
//...
SIZE = prime;
return h;
}
void add_THash (THash h,long id, long idrevision){
int i,r=0;
if (entries > SIZE * 0.7) h=resize_THash(h);
//...
entries++;
}
哈希表的初始化是正确的,但问题是当我重新分配/调整大小 3 次时,停止工作,给我分段错误;在这一点上,我尝试了一切,但我失败了。任何人都可以解释我,为什么这种实现是错误的?
例如:在此主要中,如果条件为i<3000
则有效,但如果条件为i<6000
,则不起作用。
int main()
{
int i;
THash t = init_THash();
for(int i=10;i<3000;i++){
add_THash(t,i,627604899);
}
printf("SIZE:%dn",SIZE);
printf("ENTRIES: %dn",entries);
return 0;
}
add_Thash
函数不返回新指针,让调用方使用旧的、现在无效的指针。