1

以下代码在 fscanf 的 for 循环的第二次迭代中给了我一个分段错误,可能是什么问题???fflush(stdin) 在这里正确使用了吗???还是有其他原因。该代码应该创建一个 NODE 类型的数组,每个索引都包含一个链表,其中包含从 file.txt 读取的 32 个整数节点

FILE *file = fopen ("file.txt", "r");

int count =0;
int x=0;
   for ( x=0; x<=312500; x++)
     {
          while (count <=32)
        {

             fscanf (file, "%d", &temp->num);  

temp->ptr=NULL;


   newNode = (NODE *)malloc(sizeof(NODE));
   newNode->num=temp->num;
   newNode->ptr=NULL;



               if (first != 0)

           {

            last->ptr=newNode;
            last=newNode;
            count=count+1;

           }
          else

          {

             first = newNode;
             last = newNode;
             count=count+1;
           }

               fflush(stdin);

       }

          count =0;
          array[x] = (NODE*) malloc(sizeof(NODE));
          array[x]->ptr=first;


         first->ptr=0;
         first=NULL;

         last->ptr=0;
         last=NULL;

        temp->ptr = 0;  
temp=NULL;

       fflush(stdin);
        }

 fclose (file); 
4

1 回答 1

3

循环的第一次迭代以设置结束

temp=NULL;

NULL您在第二次迭代开始时取消引用

fscanf (file, "%d", &temp->num);

您的代码没有显示如何temp分配,因此很难说您是否应该停止 NULL 化它或分配一个新实例。

于 2013-11-15T07:58:05.267 回答