test.txt

来自「清华大学计算机系数据结构课程教材《数据结构 用面向对象方法和C++描述》(殷人昆」· 文本 代码 · 共 23 行

TXT
23
字号
+-----------------------------------------------+
#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 + =
减小字号Ctrl + -
显示快捷键?