3

我是 C 编程语言的初学者,我想编写一个散列程序。我可以用指定数量的typedef ... Name元素(在数组中)编写这个程序,但是当我使用动态分配时,会出现“无效的初始化程序”错误。

    typedef char Name[30];
    
    Name hashTable[MAX];
    
    int hash(Name name){
      int long sum = 0;
      int len=strlen(name);
      int i = 0;
      for (; i<len;i++)
        sum += name[i];
      sum = sum % MAX;
      printf("\nhash of [%s] = %ld\n",name,sum);
      return sum;
    }

    void main(){
      int i,j;
      for(i=0;i<MAX;i++)
        strcpy(hashTable[i],"");
      int pos, x, cont=1;
      printf("number of names: ");
      scanf("%d",&x);
      while (x>=cont){
       Name name = malloc(sizeof(Name));  // why this line have the error of "invalid initializer"?
       printf("\ntype the %dº name: ",cont);
       scanf("%s",name);
       pos=hash(name);
       strcpy(hashTable[pos],name);
       cont++;
    }
4

2 回答 2

2

我知道这个答案很晚,但我犯了一个类似的愚蠢错误。变量Name name应该是一个指针。IEName * name

于 2016-06-22T06:01:57.607 回答
0

您的名称声明使其静态(非动态)分配。因此,您不需要使用 malloc() 来分配空间。

于 2013-03-29T04:00:30.280 回答