在链接列表中创建和添加数据

时间:2015-04-16 19:39:21

标签: c arrays data-structures linked-list

我已经开始学习链接列表,通过视频和多个示例,我已经非常了解链接列表是什么以及如何在现实生活中进行类比表示。但是当涉及到编码时,我会迷失方向,我想通过所有指针让我感到困惑,我需要更多地掌握数组,所以我认为它与链接列表相同。所以这是我的代码

/*
•   The program will use dynamic memory to create a singly linked list(NO ARRAYS PERMITTED)
•   The program will store unlimited number of student records(limited only by RAM).
•   A student record will consist of Student Name, Age, and GPA…you may need to add additional fields to make this work(Next).
•   The program will have a way for the user to add records(in order by name).You can assume that no two students have the same name.The list will always be in order.
•   The program will have a way for the user to display ALL records.
•   The program needs a way to quit.
*/

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#pragma warning(disable: 4996)// disables warning
typedef struct{
    char name[40];
    int age;
    float gpa;
    struct NODE* next;
}NODE;
void addStudent();

int main(void){
    NODE* head = NULL;
    int userinput;
    printf("       **********************************\n");
    printf("       *        MENU                    *\n");
    printf("       *  1. Add Student                *\n");
    printf("       *  2. Display all student records*\n");
    printf("       *  3. Quit                       *\n");
    printf("       **********************************\n");
    scanf_s("%d%*[^\n]", &userinput); '\n' == getchar();
    switch (userinput)
    {
    case 1: do
    {
        addStudent(head);
        printf("Add another record? 1(y) 2(n)\n");
        scanf_s("%d%*[^\n]", &userinput); '\n' == getchar();
    } while (userinput == 1);
    break;

    }





    }

void addStudent(NODE* head){

    head = malloc(sizeof(NODE));
    if (head == NULL)
    {
        return;
    }
    NODE * current = head;
    printf("Please Enter student name:\n");
    fgets(current->name, 40, stdin);
    printf("Enter student age:\n");
    scanf("%d%*[^\n]", &current->age); '\n' == getchar();
    printf("Enter student gpa:\n");
    scanf("%f%*[^\n]", &current->gpa); '\n' == getchar();
    current->next;
    current->next = NULL;

    while (current != NULL){
        current = head;
        printf("%s\n", current->name);
        printf("%d\n", current->age);
        printf("%0.2f\n", current->gpa);
        current = current->next;
    }
}

当我编译时,由于while循环中的current = head,它总是会打印出我认为它的头部,我理解为什么它会打印头但是我迷失了如何安排这些代码所以我可以当我通过循环添加和打印所有节点时创建一个新节点。

1 个答案:

答案 0 :(得分:2)

问题是你永远不会创建新节点来添加到列表中,但总是只更新头部。为了使它成功,你应该:

  1. 分配新的NODE

    NODE *newNode = malloc(sizeof(NODE));
    
  2. 将数据加载到此节点

    printf("Please Enter student name:\n");
    fgets(&newNode->name, 40, stdin);
    printf("Enter student age:\n");
    scanf("%d%*[^\n]", &newNode->age); '\n' == getchar();
    printf("Enter student gpa:\n");
    scanf("%f%*[^\n]", &newNode->gpa); '\n' == getchar();
    
  3. 更新节点以指向HEAD当前指向的节点

    newNode->next = head
    
  4. 更新头部以指向新节点

    head = newNode;
    
相关问题