absllist.cpp

来自「一本全面剖析C++数据结构算法的书籍」· C++ 代码 · 共 28 行

CPP
28
字号
// test formula based linear list derived from abstract list#include <iostream.h>#include "allist.h"#include "xcept.h"void main(void){   int x;   try {      LinearList<int> L(5);      cout << "Length = " << L.Length() << endl;      cout << "IsEmpty = " << L.IsEmpty() << endl;      L.Insert(0,2).Insert(1,6);      cout << "List is " << L << endl;      cout << "IsEmpty = " << L.IsEmpty() << endl;      L.Find(1,x);      cout << "First element is " << x << endl;      cout << "Length = " << L.Length() << endl;      L.Delete(1,x);      cout << "Deleted element is " << x << endl;      cout << "List is " << L << endl;      }   catch (...) {      cerr << "An exception has occurred" << endl;      }}

⌨️ 快捷键说明

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