我正在尝试拆分由' \ 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);
答案 0 :(得分:2)
您的变量tab
是指向指针的指针,但您保留一个带有malloc
的字符数组。如果要在代码中使用tab
作为指针数组,则必须首先分配一个char
指针数组,然后为每一行分配一个char
数组。但这很复杂。
使用char *tab;
应该更容易,并且只分配一个字符数组,就像你的代码已经完成一样。您必须将元素访问权限更改为tab[y * width + x]
而不是tab[y][x]
。