根据给定的结构体类型,用顺序链表实现如图功能
ypedefstructtagStudent{
int num;
int math;
char*name;
}Student;
typedefstructtagSqList
{
Student*pStudent;
int length;
int listsize;
}SqList;
2010-09-29 23:02
2010-09-30 09:26
2010-09-30 13:12
2010-09-30 15:34