1. 首页
  2. 课程学习
  3. C++/C
  4. 结构体排序查找以及链表的使用

结构体排序查找以及链表的使用

上传者: 2019-02-14 17:32:30上传 C文件 1.2KB 热度 27次
学习结构体排序查找以及链表的使用#include #include #include struct student { int num; double score; char name[100]; struct student *next; }; int cmp(const void *a,const void *b) { struct student *p1=(struct student*)a; struct student *p2=(struct student*)b; if(p1->score!=p2->score
用户评论