考虑以下代码片段:
#include<stdio.h>
#include<conio.h>
#define TABLESIZE 100
sturct record{
int k;
int r;
}table[TABLESIZE];
int tcount=0;
int search_and_insert(int key,int rec){
int i;
i=h(key);
while(table[i].k!=key && table[i].k!=NULL)
i=rh(i);
if(table[i].key==NULL){
table[i].k=key;
table[i].r=rec;
tcount++;
}
return i;
}
int h(int key){
return key%1000;
}
int rh(int hkey){
int k;
if(hkey==99)
return 0;
return ((hkey+1)%1000);
}
如果表while
已满,则循环可能是无限循环,为了解决这个问题,我可以引入如下if
语句:
if(tcount<TABLESIZE){
while(table[i].k!=key && table[i].k!=NULL)
i=rh(i);/*Rehash*/
if(table[i].key==NULL){
table[i].k=key;
table[i].r=rec;
tcount++;
}
}
但在我看来,这会引发另一个问题,即当表已满或搜索将提供错误结果时,我将无法搜索表中已存在的记录。
这个问题能解决吗?