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

源代码在线查看: pnode.h

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

相关代码

				// pnode.h  Definition of a Pnode class
				
				//#include "person.h"
				typedef char Person;					// temporary for debugging
				const Person HEADPERSON = ' ';
				const Person TAILPERSON = '~';
				
				class Pnode
				{	public:	 Pnode ();								// constructor
								 friend class PersonList;			// PersonList is our friend
					private:	 Pnode *link;
								 Person person;
				};
							

相关资源