我正在尝试读取文本文件并将其逐字添加到链接列表中。我在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)] = '\0';
insert(&startPtr, word);
word[0] = '\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.\n\n");
else {
printf("The list is:\n");
while (currentPtr != NULL) {
printf("%s --> ", currentPtr->data);
currentPtr = currentPtr->nextPtr;
}
printf("EOF\n\n");
}
}
char fpeek(FILE *stream) {
char c;
c = fgetc(stream);
ungetc(c, stream);
return c;
}
答案 0 :(得分:3)
首先,检查库函数的返回值,如fopen()等。
其次,请参阅simonc的回答。
第三,在这个循环之后:
while(currentPtr != NULL){
currentPtr = currentPtr->nextPtr;
}
currentPtr->nextPtr = newPtr;
currentPtr为null,因此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 *);
答案 1 :(得分:0)
我快速查看了您的代码,我很确定段错误问题在这里:
while(currentPtr != NULL){
currentPtr = currentPtr->nextPtr;
}
currentPtr->nextPtr = newPtr;
这样做是因为它遍历列表直到currentPtr
等于null。
然后,您尝试通过空指针(currentPtr->nextPtr
)分配struct字段,这会导致分段错误。
答案 2 :(得分:0)
好的,就在这里:
while(fpeek(fptr) != EOF) {
i = 0;
while(fpeek(fptr) != ' '){
word[i] = fgetc(fptr);
i++;
printf("%d",i);
}
word[i] = '\0';
insert(&startPtr, word);
printf("%c", word[4]);
word[0] = '\0';
}
当我运行我的完整代码时,它会输出12345ooooooooooooooooooooooo等等。在我的测试文件中,第一个单词是“Hello”,这就是无限'o'的来源。如果外部循环是无限的,那么第二个while循环也不会执行多次吗?我的意思是,为什么第二个印刷语句是唯一重复的一个?