我正在尝试创建一个动态数组,该数组使用双指针将给定句子的单词存储在动态二维数组中,但是每当我给出三个以上的单词时,都会出现以下错误:
*** glibc detected *** ./a.out: realloc(): invalid next size: 0x000000000255a030 ***
相关代码如下:
#include <stdio.h>
#include <stdlib.h>
int main()
{
char **ptr=NULL;
char letter;
int ptrsize=1, wordsize=1;
ptr=malloc(ptrsize*sizeof(char *));
ptr[ptrsize]=(char *)malloc(wordsize*sizeof(char));
do
{
letter=getchar();
while ((letter!=' ')&&(letter!='\n'))
{
ptr[ptrsize][wordsize]=letter;
*ptr= realloc(*ptr,wordsize+1);
wordsize++;
letter=getchar();
}
ptrsize++;
ptr = realloc(ptr,ptrsize*sizeof(char));
wordsize=1;
ptr[ptrsize]=malloc(wordsize*sizeof(char));
}
while (letter!='\n');
return 0;
}
我已经设法通过更改双指针的 malloc 和 realloc 来增加句子的大小,但仍然没有找到任何可靠的解决方案。提前致谢。