《C/C++程序设计导论(第二版)》一书的程序源文件

源代码在线查看: perlist.h

软件大小: 59 K
上传用户: LANCEZHANGL
关键词: 程序设计 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				// perlist.h  Definition of a PersonList class  (pnode.h contains
				//    the definition of a Person)
				#include "pnode.h"
				class PersonList
				{	public:	PersonList ();										// constructor
								void Insert (const Person&);
								void Delete (const Person&);
								void Traverse ();
								~PersonList ();									// destructor
								PersonList (const PersonList&);			// deep copies
								PersonList& operator= (const PersonList&);
					private:	Pnode *start;
				};
							

相关资源