注册 登录
编程论坛 C++教室

根据给定的结构体类型,用顺序链表实现如图功能

fishandyu 发布于 2010-09-29 23:02, 505 次点击
ypedefstructtagStudent
{
        int num;
        int math;
        char*name;
}Student;

typedefstructtagSqList
{
        Student*pStudent;
        int length;
        int listsize;
}SqList;

 
3 回复
#2
hahayezhe2010-09-30 09:26
我是来接分的!
#3
聋眼睛瞎耳朵2010-09-30 13:12
图在哪里啊???
#4
myth_feng2010-09-30 15:34
图都没看到~~咋实现呢
1