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

📄 indlist.cpp

📁 一本全面剖析C++数据结构算法的书籍
💻 CPP
字号:
// test indirect list#include <iostream.h>#include "indlist.h"void main(void){   int x;   IndirectList<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;}

⌨️ 快捷键说明

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