将内存分配给3维char数组会导致分段错误

时间:2011-12-16 15:06:03

标签: c multidimensional-array char malloc

作为早期问题的一个例子,我遇到了一些关于将内存分配给三维数组的问题。

我正在开展一个项目,我们需要在文本上做一些工作。为此,我们需要将文本拆分为较小的部分,并逐字处理文本。为了保存这些较小的文本,我们有一个3D数组,一个部分列表,每个部分都包含该部分中单词的列表。

但是当我尝试使用malloc()为单个单词分配内存时,我遇到了分段错误。

localText->list[i][n] = malloc(100 * sizeof(char));

以下是整个代码。

typedef struct {
   char name[100];
   char  ***list;
}text;

int main(){
   int i = 0, n, z,wordCount, sections;
   FILE *file;
   text *localText;

   openFile(&file, "test.txt");
   wordCount = countWords(file);

   sections = (wordCount / 50) + 1;

   localText = malloc(sizeof(text));
   localText->list = malloc(sections * sizeof(char **));

   for(i = 0; i < sections; i++)
      localText->list[i] = malloc(50 * sizeof(char *));
      for(n = 0; n < 50; n++)
         localText->list[i][n] = malloc(100 * sizeof(char));

   readFileContent(file, localText->list, 50);

   freeText(localText);

   return 1;
}

1 个答案:

答案 0 :(得分:6)

你错过了一些大括号:

for(i = 0; i < sections; i++) {
// ...
}