其他分享
首页 > 其他分享> > 以书中9.8例为例,建立一个简单静态链表,由3个学生的数据结点组成。要求输出各结点中的数据。

以书中9.8例为例,建立一个简单静态链表,由3个学生的数据结点组成。要求输出各结点中的数据。

作者:互联网

#include<stdio.h>
struct Student //声明一个记录学生数据的结构体
{
int num;
float score;
struct Student *next;
};
int main()
{
struct Student a,b,c,*head,*p; //定义变量
a.num=10111; //写入每个同学的成绩
a.score=98;
b.num=10112;
b.score=78;
c.num=10113;
c.score=65;
head=&a; //确定节点指向
p=&a;
a.next=&b;
b.next=&c;
int i=1;
do
{
printf(“第%d位同学的学号是:%d\t”,i,p->num);
printf(“第%d位同学的成绩是:%d\n”,i,p->score);
i++;
p=p->next;
}while(p->next!=NULL);
return 0;
}

在这里插入图片描述

标签:结点,score,int,next,链表,num,9.8,Student,struct
来源: https://blog.csdn.net/weixin_51903996/article/details/111767852