listtmp.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:2k
源码类别:

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    listtmp.h    **
  3. //*********************
  4. #ifndef LIST
  5. #define LIST
  6. #include <iostream>
  7. template<class T> class List{
  8. public:
  9.   List();
  10.   void Add(T&);
  11.   void Remove(T&);
  12.   T* Find(T&);
  13.   void PrintList();
  14.   ~List();
  15. protected:
  16.   struct Node{
  17.     Node* pNext;
  18.     T* pT;
  19.   };
  20.   Node *pFirst;        //链首结点指针