追晨小筑
张扬着易逝又不悔的青春。
摘要: /*功能:从文件中读入数据(文件为存储学号和姓名的文本,且学号和姓名在同一行,中间有空格),排序后输出到student_mass.txt文件名:sort.c作者:flonlen*/#include <stdio.h>#include <stdlib.h>#include <string.h>/********* 定义链表结点的具体内容 ***********/typedef struct _student{ char stu_id[20]; char name[20]; struct _student *prov; struct _student *next 阅读全文
posted @ 2011-05-13 12:35 flonlen 阅读(588) 评论(0) 推荐(0) 编辑