文件名称:数据结构的链表作业讨论.ppt
文件大小:134KB
文件格式:PPT
更新时间:2022-08-01 15:46:39
链表
链表的通用设计 特定应用程序的相应设计 界面设计 class Node { friend class List; protected: Node *next;//pointer to next node public: Node(){next = NULL;} };
文件名称:数据结构的链表作业讨论.ppt
文件大小:134KB
文件格式:PPT
更新时间:2022-08-01 15:46:39
链表
链表的通用设计 特定应用程序的相应设计 界面设计 class Node { friend class List; protected: Node *next;//pointer to next node public: Node(){next = NULL;} };