Speller CS50x Seg Fault

后端 未结 0 1498
时光说笑
时光说笑 2020-12-06 23:19
bool check(const char *word)
{
int hashvalue = hash(word);
node *cursor = table[hashvalue];

if(strcasecmp(cursor->word, word) == 0)
{
    return true;
}

while(s         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题