填充char *数组时的Segfault

时间:2018-01-28 10:41:20

标签: c matrix segmentation-fault

我正在尝试拆分由' \ n'分隔的字符串。成为一个字符串数组。该字符串表示NxN矩形,因此矩阵上的每一行将包含相同数量的字符。这就是我的尝试:

char    **string_to_tab(char *str, int width, int height)
{
    int     i; //counter to scan str
    int     x; //counter for tab column no.
    int     y; //counter for tab row no.
    char    **tab;

    i = 0; //I initialise variables
    x = 0; //separately because I
    y = 0; //like to :P
    tab = (char**)malloc(sizeof(char) * height * width);
    while (y < height)
    {
        while (x < width)
        {
            if (str[i] != '\n' || !(str[i]))
                {
                    tab[y][x] = str[i]; //assign char to char* array
                    x++;
                }
            i++;
        }
        x = 0;
        y++;
    }
    return (tab);
}

这给我一个分段错误,调用它看起来像这样:

char *str = "+--+\n|  |\n|  |\n+--+";
char **matrix = string_to_tab(str, 4, 4);

1 个答案:

答案 0 :(得分:2)

您的变量tab是指向指针的指针,但您保留一个带有malloc的字符数组。如果要在代码中使用tab作为指针数组,则必须首先分配一个char指针数组,然后为每一行分配一个char数组。但这很复杂。

使用char *tab;应该更容易,并且只分配一个字符数组,就像你的代码已经完成一样。您必须将元素访问权限更改为tab[y * width + x]而不是tab[y][x]