C语言 将文本文件读入链接列表



我正在尝试读取文本文件并将其中的字符串逐字添加到链表中。我对 C 相当陌生,不太了解指针。我遇到了一些不同的错误,只是弄乱了它,但现在我的插入方法中出现了分段错误。这实际上非常令人沮丧。有人可以解释一下我在这里做错了什么吗?

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
struct listNode {  /* self-referential structure */
   char data[50];
   struct listNode *nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE *LISTNODEPTR;
void insert(LISTNODEPTR *, char[]);
void printList(LISTNODEPTR);
char fpeek(FILE *);
main() {
    FILE *fptr;
    char file_name[20];
    int nrchar = 0;
    LISTNODEPTR startPtr = (struct listNode *) malloc(sizeof(struct listNode));
    char word[50];
    char c;
    int i;
    printf("What is the name of the file in which the text is stored?n");
    scanf("%s",file_name);
    //  printf("Type the number of characters per line");
    //scanf("%d", &nrchar);
    fptr = fopen(file_name,"r");
        while(fpeek(fptr) != EOF) {
      i = 0;
      while(fpeek(fptr) != ' '){
        word[i] = fgetc(fptr);
        i++;
        printf("%d", i);
      }
      word[strlen(word)] = '';
      insert(&startPtr, word);
      word[0] = '';
    }
    fclose(fptr);
    printList(startPtr);

return 0;
}
    /* Insert a new value into the list in sorted order */
    void insert(LISTNODEPTR *sPtr, char value[])
    {
      LISTNODEPTR newPtr, currentPtr;
      newPtr = malloc(sizeof(LISTNODE));
      strcpy(newPtr->data, value);
      newPtr->nextPtr = NULL;
      currentPtr = *sPtr;
      while(currentPtr != NULL){
        currentPtr = currentPtr->nextPtr;
      }
      currentPtr->nextPtr = newPtr;
    }

    /* Return 1 if the list is empty, 0 otherwise */
    int isEmpty(LISTNODEPTR sPtr)
    {
       return sPtr == NULL;
    }
    /* Print the list */
    void printList(LISTNODEPTR currentPtr)
    {
       if (currentPtr == NULL)
          printf("List is empty.nn");
       else {
          printf("The list is:n");
          while (currentPtr != NULL) {
             printf("%s --> ", currentPtr->data);
             currentPtr = currentPtr->nextPtr;
          }
          printf("EOFnn");
       }
    }
    char fpeek(FILE *stream) {
        char c;
        c = fgetc(stream);
        ungetc(c, stream);
        return c;
    }

首先,检查来自函数库函数(如 fopen() 等的返回值。

其次,看西蒙克的回答。

第三,在此循环之后:

  while(currentPtr != NULL){
    currentPtr = currentPtr->nextPtr;
  }
  currentPtr->nextPtr = newPtr;

currentPtr 为空,因此currentPtr->nextPtr = newPtr;将取消引用空指针。也许像

  while(currentPtr && currentPtr->nextPtr) {
    currentPtr = currentPtr->nextPtr;
  }
  currentPtr->nextPtr = newPtr;

是你正在寻找的更多。

最后

char fpeek(FILE *stream) {
    char c;
    c = fgetc(stream);
    ungetc(c, stream);
    return c;
}

应该是

int fpeek(FILE *stream) {
    int c;
    c = fgetc(stream);
    ungetc(c, stream);
    return c;
}

和在主要

char fpeek(FILE *);

应该是

int fpeek(FILE *);

我快速浏览了您的代码,我很确定段错误问题就在这里:

while(currentPtr != NULL){
   currentPtr = currentPtr->nextPtr;
}
currentPtr->nextPtr = newPtr;

这样做的作用是循环遍历列表,直到currentPtr等于 null。然后,您尝试通过空指针(currentPtr->nextPtr)分配结构字段,这会导致分段错误。

好的,就在这里:

while(fpeek(fptr) != EOF) {
      i = 0;
      while(fpeek(fptr) != ' '){
        word[i] = fgetc(fptr);
        i++;
        printf("%d",i);
      }
      word[i] = '';
      insert(&startPtr, word);
      printf("%c", word[4]);
      word[0] = '';
    }

当我运行我的完整代码时,它打印 12345oo等。在我的测试文件中,第一个单词是"Hello",所以这就是无限"o"的来源。如果外循环是无限的,那么第二个 while 循环不是也会执行多次吗?我的意思是,为什么第二个打印语句是唯一重复的语句?

相关内容

  • 没有找到相关文章

最新更新