ex1901.cpp

来自「teach yourself C++ in 21 days 第五版」· C++ 代码 · 共 29 行

CPP
29
字号
//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 + =
减小字号Ctrl + -
显示快捷键?