文件名称:c++继承派生
文件大小:51KB
文件格式:DOC
更新时间:2015-03-13 04:24:47
继承派生
设计StudentRecord类。公有成员:string Name,int Number;公有函数:void print();构造函数;析构函数。 2.设计StudentNode类。公有成员:StudentRecord *Record,StudentNode *Next;并完成其构造函数和析构函数。 3.设计LinkedList类。定义头插入、头删除、尾插入、遍历成员函数。并完成其构造函数和析构函数。由LinkedList派生LinkedStack类,完成void Push(StudentRecord record),bool Pop(StudentRecord &record;)函数;由LinkedList派生LinkedQueue类,完成void EnQueue(StudentRecord record),bool DeQueue(StudentRecord &record;)函数。