⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex1901.cpp

📁 teach yourself C++ in 21 days 第五版
💻 CPP
字号:
//Exercise 19.1
template <class Type>
class List  
{ 
  
  public:
     List():head(0),tail(0),theCount(0) { }
     virtual ~List();
  
     void insert( Type value );
     void append( Type value );
     int is_present( Type value ) const;
     int is_empty() const { return head == 0; }
     int count() const { return theCount; }
  
  private:
     class ListCell
     {
       public:
          ListCell(Type value, ListCell *cell = 0):val(value),next(cell){}
          Type val;
          ListCell *next;
     };
  
     ListCell *head;
     ListCell *tail;
     int theCount;
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -