C语言 填充字符* 数组时的隔离错误



我正在尝试将由""分隔的字符串拆分为字符串数组。该字符串表示一个 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);

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

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

相关内容

  • 没有找到相关文章

最新更新