请注意,这是一个转发,我已经澄清了我的帖子更容易理解
void searchArray(char ***array, int count){
char * word = "";
printf("Enter a word: ");
fscanf(stdin, " ");
fscanf(stdin, "%c", &word);
bool found = false;
for(int i = 0; i < count; i++){
if(strcmp(word, (*array)[i]) == 0){
found = true;
break;
}
}
if(found) printf("%s found!\n", word);
else if (!found) printf("%s not found!\n", word);
}
在测试中,代码返回“未找到!” 对于每个输入。
以上是我用于搜索和遍历 char ** 类型数组的代码......我不确定我的遍历逻辑是否错误,或者我是否不正确地使用 strcmp......任何帮助都会很大赞赏!
这是插入代码,它可能有助于澄清我到底想要做什么:
int insertWord(char **array, int *count, char word[])
{
char *wordPtr;
wordPtr = (char *)malloc((strlen(word) + 1) * sizeof(char));
if (wordPtr == NULL)
{
fprintf(stderr," Malloc of array[%d] failed!\n", *count);
return -1;
}
/* Memory for this word has been allocated, so copy characters
and insert into array */
strcpy(wordPtr, word);
array[*count] = wordPtr;
(*count)++;
return 0;
}
我的任务是在此数据中搜索特定字符串。