在字符串中搜索char **类型

时间:2013-10-07 16:39:06

标签: c arrays string search char

请注意,这是一个重新发布,我已经澄清了我的帖子更容易理解

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);
}

在测试中,代码返回“not found!”对于每一个输入。

以上是我搜索和遍历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;
}

我的任务是在此数据中搜索特定字符串。

1 个答案:

答案 0 :(得分:1)

void searchArray(char ***array, int count){

    char word[80];

    printf("Enter a word: ");
    fscanf(stdin, " ");
    fscanf(stdin, "%s", 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);
}

此代码完美无缺。我认为因为我使用的是fscanf(stdin,“%c”,&amp; word);它是在前一行(在缓冲区中)的开放空间字符中读取然后搜索它...是如何工作的?

谢谢!