已有a,b两个链表,每个链表中的结点包括学号,成绩。要求把两个链表合并。按学号升序排列.
#include <stdio.h>#define SIZE sizeof(struct student)struct student{ long num; flo ...
#include <stdio.h>#define SIZE sizeof(struct student)struct student{ long num; flo ...