使用scanf将std输入解析为链接列表

时间:2015-02-17 23:26:57

标签: c scanf

我想取一个由3个半冒号分隔的标准输入(例如:test1:127:completed)并将其放入链表的节点中,该节点包含3个属性。当我运行它时它给了我一个段错误,我是否在第96行不正确地使用了scanf?

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define BUFFERSIZE 1024

//for the linked list
struct node{
    char *fileName;
    int *lineNumber;
    char *filler;
    struct node *next;
};

int main (int argc, char *argv[])
{
    //Create the linked list of the file location and the line number
    char tmpstring[BUFFERSIZE];
    /* This won't change, or we would lose the list in memory */
    struct node *head = NULL;
    //tail
    struct node *tail = NULL;
    /* This will point to each node as it traverses the list */
    struct node *ptr;
    //new node pointer
    struct node *newnode;

    while (fgets(tmpstring, 128, stdin) == tmpstring)
    {
        newnode->next = NULL;
        // First insertion is a special case.
        if (tail == NULL)
            head = tail = newnode;
        else {
            tail->next = newnode;
            tail = newnode;
        }
    } // while

    for (ptr = head; ptr != NULL; ptr = ptr->next)
        //THIS IS THE PROBLEM                    scanf(" %s:%d:%s", ptr -> fileName, ptr -> lineNumber, ptr -> filler);
        printf("%s", ptr->fileName);

    //get how many nodes are in the linked list
    struct node *tmp = head;
    int count = 0;
    while(tmp!=NULL)
    {
        count++;
        tmp = tmp->next;
    }
    //end list creation

    //getGrepOutput();
    printf("%d\n", count);
}

//new code added
ptr -> fileName = (char*) malloc(50);
ptr -> lineNumber = (int*) malloc(50);
ptr -> filler = (char*) malloc(50);

1 个答案:

答案 0 :(得分:1)

scanf(" %s:%d:%s", ptr -> fileName, ptr -> lineNumber, ptr -> filler);

您需要为ptr -> fileName分配内存,这只是程序中的悬空指针。 lineNumberfiller成员也是如此。