简单链表 —这个最终不能是那种什么都没有顺序的,因为这个没有排
/*
简单链表 ---这个最终不能是那种什么都没有顺序的,因为这个没有排
*/
#include
#include
#define LEN sizeof(student)
typedef struct Student
{
int num;
float score;
struct Student *next;
} student;
student lista,listb;
int n,sum=0;
int main(void)
{
student *creat(void);
student *insert(student *,student *);
void print(student *);
student *ahead,*bhead,*abh;
printf("input list a:/n");
ahead = creat();
s
版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/4196.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
共有 0 条评论