摘要: //主要的合并函数 /* 定义insert函数,用来合并两个链表 */ struct student * insert(stuct student * ah,struct student * bh) {struct student * pa1,* pa2,* pb1,* pb2; pa2=pa1=ah; pb2=pb1=bh; do { if((pb1->num>pa1->num)... 阅读全文
posted @ 2017-09-16 11:17 Allen101 阅读(487) 评论(0) 推荐(0)