阅读纺织品并添加到C

时间:2015-04-24 04:29:22

标签: c pointers file-io struct linked-list

我正在尝试在此程序中创建createLinkedListNode函数。在这个函数中,我打开一个文本文件,这是一个参数,我向用户询问employee结构中的信息,然后我从文件指针中引用的文件中逐行读取它。我将数据添加到链表。我初始化Linked列表的struct部分,并将下一个指针设置为NULL并返回指向这个新创建的节点的指针。我有两个结构,让我困惑,因为我不知道如何将数据添加到指定的结构:

struct List{
    struct EMPLOYEE{
        int ID;
        char *fName[25];
        char *lName[35];
        double salary;
        char Location;
    }employee;
    struct List *next;
};

这是我有两个链接列表的主要功能,我还没有初始化它们。但是我在这里调用了createLinkedList函数,并调用了文件指针:

void main() {
    FILE *fp;
    struct List *onHead = NULL;
    struct List *offHead = NULL;

    createLinkedListNode();
}

我在逐行阅读文本文件并相应添加数据时感到迷茫。所以如果有人能做到这一点会很棒。

struct List *createLinkedListNode(FILE *fp, struct List *list, int ID, char fName, char lName, double salary, char Location){
    //This is the created node with its memory allocated.
    struct List* node = (struct List)*malloc(sizeof(struct List));

    fp =fopen("textfile.txt","r");

    //prompt for all info required in passenger struct
    printf("Enter Passenger ID:\n");
    fgets()
    node ->passenger.ID = ID;
    printf("Enter first name:\n");
    node ->passenger.fName = fName;
    printf("Enter last name:\n");
    node ->passenger.lName = lName;
    printf("Enter salary:\n");
    node ->passenger.CBalance= CBalance;

    printf("Enter location:\n");
    printf("1- on\n");
    printf("0- off\n");
    node ->passenger.Location =Location;

    node ->next = list;
    return node;
}

让我们说正在阅读的纺织品是这样的:

0001
John
Tyler 
23.00
1
0002
Erin
Marc
25.00
0
0003
Jason
Ed
15.00
1

1 个答案:

答案 0 :(得分:0)

我真的不明白你的问题,但看起来有关fgets的一些信息可以帮助你^^只是让你看看fgets如何运作:

char buffer[100];
FILE *fp = fopen("textfile.txt","r");

while (fgets(buffer, 100, fp)) {
    printf("%s", buffer);
}

这将逐行打印整个文件。每次调用 fgets 都会将文件的下一行存储在第一个参数中传递的字符串中(第二个参数是您可以读取的最大字符数,最后一个是您的文件)

当你到达文件的末尾时,

fgets 返回null,这就是它的工作方式。

因此,不是在每个 fgets 之后打印,而是可以计算线并填充结构,您必须将字符串转换为整数/双数。

编辑:这里有很多关于如何填充结构的剧透,它不是理想的解决方案,因为它应该更强大,就像处理文件不符合您期望的情况一样,但它会可能会帮助你。

另外,我认为你的结构中有问题,你写道:

    char *fName[25];
    char *lName[35];

这会创建一个25/35 char *的数组,我想你想要没有*所以它只是一个25/35 char的数组(这是一个char *)

SPOILERS !!! 所以在这里我写了一个小C文件,它读取你的文本文件并打印列表以显示它的工作原理,正如我所说它必须改进才能用于严肃的软,文件可能不像我们想要的那样。

#include <stdio.h>
#include <stdlib.h>

struct List{
    struct EMPLOYEE{
        int ID;
        char fName[25];
        char lName[35];
        double salary;
        char location;
    }employee;
    struct List *next;
};

int main(int argc, char const *argv[])
{
    char buffer[100];
    struct List* node = NULL;

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

    printf("Reading file....\n");

    while (fgets(buffer, 100, fp)) {
        // File is not empty, it should at least contain a full employee
        struct List* new_node = malloc(sizeof(struct List));
        new_node->next = NULL;

        // ID
        new_node->employee.ID = atoi(buffer);

        // fName
        fgets(buffer, 25, fp);
        int l = strlen(buffer);
        if (l > 0 && buffer[l-1] == '\n') buffer[l-1] = '\0'; // We dont want the \n in the name ^^
        strcpy(new_node->employee.fName, buffer);

        // lName
        fgets(buffer, 35, fp);
        l = strlen(buffer);
        if (l > 0 && buffer[l-1] == '\n') buffer[l-1] = '\0'; // We dont want the \n in the name ^^
        strcpy(new_node->employee.lName, buffer);

        // salary
        fgets(buffer, 100, fp);
        new_node->employee.salary = atof(buffer);

        // Location
        fgets(buffer, 100, fp);
        new_node->employee.location = buffer[0];

        // We add to the list
        if (node == NULL) {
            node = new_node;
        } else {
            new_node->next = node;
            node = new_node;
        }
    }

    printf("We're done\n");

    while (node != NULL) {
        printf("Employee:\n");
        printf("  ID:\t\t%i\n", node->employee.ID);
        printf("  fName:\t%s\n", node->employee.fName);
        printf("  lName:\t%s\n", node->employee.lName);
        printf("  Salary:\t%f\n", node->employee.salary);
        printf("  location:\t%c\n\n", node->employee.location);
        node = node->next;
    }

    // Memory leaks fest :)
    return 0;
}

最后一点,如果你没有特别的理由用大L命名这个位置,你应该把它叫做 location

告诉我是否有问题^^