在C中搜索字符串数组

时间:2012-10-28 02:31:09

标签: c arrays string

我正在试图弄清楚如何搜索输入到字符串数组中的名称列表。如果输入的名称是原始数组的一部分,则搜索函数应该返回数组中字符串的位置;如果找不到该字符串,则应返回-1。如果返回-1,那么我希望能够打印出“未找到”,这似乎不太难以弄清楚,但如果找到该名称,我希望能够打印出来找到名字的位置。

这是我的代码,显然我是新手,所以我可能已经诅咒了应该怎么做。我的其余代码似乎工作得很好,但是这个函数让我感到茫然。

#include<stdio.h>
#include<conio.h>
#include<string.h>

#define MAX_NAMELENGTH 10
#define MAX_NAMES 5
void initialize(char names[MAX_NAMES][MAX_NAMELENGTH]);
int search(char names[MAX_NAMES][MAX_NAMELENGTH],int i,Number_entrys);
int main()
{
    char names[MAX_NAMES][MAX_NAMELENGTH];
    int i;
    initialize(names);
    search(names,i,Number_entrys);
    search_result= search(names,i,Number_entrys);
    if (search_result==-1){
        printf("Found no names.\n");
    }
    if(search_result==0){
       printf("Name found");
    }    getch();
    return 0;
}

void initialize(char names[MAX_NAMES][MAX_NAMELENGTH])
{
    int i, Number_entrys;

    printf("How many names would you like to enter to the list?\n");
    scanf("%d",&Number_entrys);

    if(Number_entrys>MAX_NAMES){
               printf("Please choose a smaller entry\n");
    }else{
        for (i=0; i<Number_entrys;i++){
            scanf("%s",names[i]);
        }
    }
    for(i=0;i<Number_entrys;i++){

        printf("%s\n",names[i]); 
    }
}

int search(char names[MAX_NAMES][MAX_NAMELENGTH],int i)
{
    int j, idx;
    char name[MAX_NAMELENGTH];
    printf("Now enter a name in which you would like to search the list for:");
    scanf("%s", name);

    for(x = 0; x < Number_entrys; x++) {
        if ( strcmp( new_name, names[x] ) == 0 ){
            /* match, x is the index */
            return x;
        }else{
            return -1;   
        }
    }
}

3 个答案:

答案 0 :(得分:0)

你的意思是:

int search(char names[MAX_NAMES][MAX_NAMELENGTH], int i)
{
     int j, idx;
     char name[MAX_NAMELENGTH];
     printf("Now enter a name in which you would like to search the list for:");
     scanf("%s", name);

     idx = -1;
     for(j = 0; j < i; j++){
         if(strstr(names[i], name) != NULL){
             idx = j;break;
         }
     }
     return idx;
}

答案 1 :(得分:0)

这里有几个问题。

搜索的目的是要求用户输入要搜索的单个名称。那么为什么

 char new_name[MAX_NAMES][MAX_NAMELENGTH];

您只需要一个数组

 char new_name[MAX_NAMELENGTH];

然后你有一个循环,你只需要循环一次,所以你不需要循环

 scanf("%s",new_name);

就足够了。这就像你复制了用来填充你的名字的代码一样,但是我们并没有真正理解它的本质。

另一个问题是您无法控制用户可能输入的名称的长度。如果用户键入一个很长的名字会怎么样?您过度填充阵列,您的程序可能会崩溃并烧毁。阅读this article以了解如何控制此事。

要真正迂腐你还应该检查scanf的返回码,你期望读取一个项目,所以返回值应为1,其他任何内容都是错误。

然后你试图使用strstr()来查看char数组的数组。 strstr documentation表示其目的是在字符串中搜索子字符串,而不是搜索字符串数组。

所以只需手动搜索数组

/* what is i? the number of items used in the array? */
for(x = 0; x < i; x++) {
    if ( strcmp( new_name, names[x] ) == 0 ){
        /* match, x is the index */
        return x;
    }
}
/* here with no match */
return -1;

在你的主要

int search_result;

search_result = search( /* etc */ );

if ( search_result == -1 ) {
     /* print "not found" here */
} else {
     /* print something else */
}

答案 2 :(得分:0)

(8)......
也许我们会把它全部转过来 因为现在还不算太晚 永远不会太迟!! (8)
:)!


对于这首歌感到抱歉^ _ ^ ...哦,好几个小时我都很喜欢这个问题,我希望这段代码可以帮助你解决一些问题:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>


/* return array of indexs */

int*
search(const char *list, size_t slen, const char **arr_names, size_t arrlen)
{
    int *arr_idx;
    int j,i,idx;

    i=idx=0;

    arr_idx = malloc(sizeof(int)*arrlen+1);

    if(!arr_idx)
        exit(EXIT_FAILURE);

    for(i=0; i<slen; i++) {
        for(j=0; j<arrlen ; j++) {
            if(!strncmp(&list[i], &arr_names[j][0], strlen(arr_names[j]))) {
                arr_idx[idx] = j;
                idx++;
            }
        }
    }

    arr_idx[idx] = -1; /* -1 terminated array */
    if(!idx) {
        free(arr_idx);
        return NULL; /* found no names */
    }

   return arr_idx;
}
/* I'm a sick [something], nul terminated strings :P */
const char *string   = "My favorite artists: ATB, Nujabes and Bonobo also Aphex Twins is nice, along with Trapt and Breaking Benjamin.\0";
const char *names[] = {"ATB\0", "Scifer\0", "Aphex\0", "Bonobo\0", "Nujabes\0", "Tipper\0"};
#define N_NAMES 6

int
main(void)
{
    int i;
    int *array;

    array = search(string, strlen(&string[0]), names, N_NAMES);

    if(!array) {
        puts("Found no names.\n");
        return EXIT_SUCCESS;
    }

    printf("Names found: ");
    for(i=0; array[i]!=-1; i++)
        printf("%s,", names[array[i]]);

    printf("\b \n");
    free(array);  /* important */
    /* system("pause"); */   /* NOTE: decomment this if you're on windows */
   return EXIT_SUCCESS;
}

进行了一些测试:

~$ ./program


输出
Names found: ATB,Nujabes,Bonobo,Aphex