鱼C论坛

 找回密码
 立即注册
查看: 1302|回复: 1

[已解决]单链表头插法,打印报错printfInfo函数

[复制链接]
发表于 2021-1-2 12:13:07 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<winuser.inl>
#include<stdio.h>
#include <cstdlib>
#include<string.h>
//输入学生的总人数以及每个学生的姓名成绩,并将内容打印出来 
//用头插法向链表里面添加元素
void getInput(struct Student* stu);
void printfInfo(struct Student**head);
void releaseMemory(struct Student** head);
void head_add(struct Student** head);

struct Student
{
        char name[20];
        int score;
        struct Student *next;
}; 

void getInput(struct Student *stu)
{
        printf("name:");
        scanf_s("%s", stu->name, 20);
        printf("score:");
        scanf_s("%d",&stu->score);
}

void printfInfo(struct Student **head)
{
        struct Student* stu;
        stu = *head;
        while (stu != NULL)
        {
                printf("name: %s \n", stu->name);
                printf("score:%d \n", stu->score);
                stu = stu->next;
        }        
}

void releaseMemory(struct Student** head)
{
        struct Student* stu, * temp;
        stu = *head;
        while (stu != NULL)
        {
                temp = stu;
                stu = stu->next;
                free(temp);
        }
}

void head_add(struct Student **head)
{
        struct Student *stu,*temp;

        stu = (struct Student*)(malloc(sizeof(struct Student)));
        if (stu == NULL)
        {
                printf("memory failed");
                exit(1);
        }
        getInput(stu);

        if (*head != NULL)  //不是空链表
        {
                temp = *head;
                *head = stu;
                stu->next = temp;
        }
        else
        {
                *head = stu;
                stu->next = NULL;
        }
}

int main()
{
        struct Student *namelist = NULL;  ////初始化一个指针,头指针,相当于定义了一个空的单链表 
        struct Student* stu;
        
        int num;
        printf("total num of stu:");
        scanf_s("%d", &num);
        printf("\n");

        printf("enter info:\n");
        for (int i = 0; i < num; i++)
        {
                head_add(&stu);
        }
        printf("finish entering!\n");

        printf("begining to print\n");
        printfInfo(&stu);

        releaseMemory(&namelist);
        return 0;

}
最佳答案
2021-1-2 12:49:57
int main()
{
        struct Student *namelist = NULL;  ////初始化一个指针,头指针,相当于定义了一个空的单链表
        struct Student* stu;              //  指针 stu 未初始化 
        初始化一下就好了
        struct Student* stu = NULL ;
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-1-2 12:49:57 | 显示全部楼层    本楼为最佳答案   
int main()
{
        struct Student *namelist = NULL;  ////初始化一个指针,头指针,相当于定义了一个空的单链表
        struct Student* stu;              //  指针 stu 未初始化 
        初始化一下就好了
        struct Student* stu = NULL ;
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 06:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表