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

📄 test.txt

📁 清华大学计算机系数据结构课程教材《数据结构 用面向对象方法和C++描述》(殷人昆主编)的类库(书中程序的源代码)
💻 TXT
字号:
+-----------------------------------------------+
#1  Input and Output the List :
Please input the number of nodes you want to input : 5
Please input the value of these nodes :
4 5 6 7 8

The List is :
4  5  6  7  8
+----------------------------------------------+
#2 Test int Length()
The Lenght is : 5
+----------------------------------------------+
#3 Test bool Search(T x);
Please input a value to search :
11
Not found!
+----------------------------------------------+
#4 Test bool Insert(int i, T x);
Please input a value to Insert : 11
input the position : 2
Insert succeed !
The new list is 4  5  11  6  7  8

⌨️ 快捷键说明

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