C中动态数组和指针的问题

时间:2013-04-23 15:45:44

标签: c arrays pointers malloc

我想从STDIN中读取以下行并将值保存在c:

A:2
B:3
C:AAAA1
C:AASC2
C:aade3
D:1
D:199

这是我的c程序:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <time.h>
#include <sys/time.h>

int main(int argc, char **argv)
{

    char buf[BUFSIZ];
    short a = 0;
    short b = 0;
    short anzb=0;
    short anza=0;
    char *c
    short *d;

    short i;


    while (fgets(buf, BUFSIZ, stdin) != NULL)
    {
        if (buf[strlen(buf)-1] == '\n') {
            char *isa = strstr(buf, "A:");
            char *isb = strstr(buf, "B:");
            char *isc = strstr(buf, "C:");
            char *isd = strstr(buf, "D:");
            if(isa){
                char *sep = substring(isa,3,strlen(isa));
                a = atoi(sep);
                d = malloc(a * sizeof(short));
            }else if(isb){
                char *sep = substring(isb,3,strlen(isb));
                b = atoi(sep);
                c = malloc(b * sizeof(char));
            }else if(isc){
                char *sep = substring(isc,3,strlen(isc));
                c[anzc] = sep;
                anzc++;
            }else if(isd){
                char *sep = substring(isd,3,strlen(isd));
                d[anzd] = sep;
                anzd++;
            }
        }
    }

    printf("%i\n", a);
    printf("%i\n", b);

    for(i=0; i<=anzc-1;i++){
        printf("%c", c[i]);
    }

    return 0;
}

我是c的新手所以我对指针和数组知之甚少,所以我希望你能帮助我。

在读取值A:和B:并将其存储在a和b中后,我可以为c和d行创建数组。我认为这是我的问题。我不知道如何在我的程序中创建一个数组。我尝试过malloc和其他东西但是我的知识很小。

如果我读过c和d(A和B)的值(大小),我只想创建一个数组。

然后我想保存数组中的值。

我希望你能帮我修改我的代码。我在这一天做了很多尝试,但没有任何效果,我现在很无奈。

编辑:

新尝试我得到分段错误11:

     else if(isb){
        char *sep = substring(isb,8,strlen(isb));
        b = atoi(sep);
        c = malloc(b * sizeof(char*));
        int i;
        for (i = 0; i < subst; i++)
        {
          c[i] = malloc(13);
        }
    }else if(isc){
        char *sep = substring(isc,8,strlen(isc));
        strcpy(c[anzc], &buf[3]);
        anzc++;
    }

1 个答案:

答案 0 :(得分:1)

您的分配或多或少是正确的,但是您忽略了一些细节。 B为您提供的值为3,即C的条目数,而不是每个条目的长度。然后,当你实际上需要一个类型为char*的2-D数组时,你分配了一个数组,这个数组将指向3个其他数组,这些数组将包含C行的每个值。所以;

此行c = malloc(b * sizeof(char));必须为c = malloc(b * sizeof(char*)); 然后你需要做;

 int i;
 for (i = 0; i < b; i++)
 {
     c[i] = malloc(length); // where length is some arbitrary buffer length
     // because you have no way of knowing the length of the individual strings.
 }

在此之后,您可以使用strcpy将行复制到您在for循环中分配的每个char数组中。

所以要完成复制,你需要做这样的事情;

         int iC = 0;
         // outside of the while loop we need a control var track the index
         // of the c array. it needs to work independent of the normal iteration.
         //inside the while loop
         else if(isc){
            strcpy(c[iC], &buf[3]) 
            iC++;
        }