创建简单学生链表 并按照语文成绩排序(挑选最大节点组建新链表)

#include<stdio.h> #include<stdlib.h> typedef struct stu {     int id;     char name[32];     int chinese;     int math;     struct stu * next; }STU,*PSTU; STU * add(PSTU head)    //创建单向链表  尾插法  不带头节点
相关文章
相关标签/搜索