- 1、本文档共22页,其中可免费阅读7页,需付费180金币后方可阅读剩余内容。
- 2、本文档内容版权归属内容提供方,所产生的收益全部归内容提供方所有。如果您对本文有版权争议,可选择认领,认领后既往收益都归您。
- 3、本文档由用户上传,本站不保证质量和数量令人满意,可能有诸多瑕疵,付费之前,请仔细先通过免费阅读内容等途径辨别内容交易风险。如存在严重挂羊头卖狗肉之情形,可联系本站下载客服投诉处理。
- 4、文档侵权举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
#include iostream
#include cstring
using std::cout;
using std::endl;
class Course{
public:
Course():name(0),next(0){}
Course(char n[]);
~Course(){delete[] name;}
void setName(char n[]);
void setNextCourse(Course* c);
char *getName(){return name;}
Course* getNext(){return next;}
private:
char
文档评论(0)