📄 h9main.cpp
字号:
#include"h9.h"int main(void){ List l,t,lt; int temp; l.InsertLNode(1,10); //初始化l l.InsertLNode(2,20); l.InsertLNode(3,30); l.InsertLNode(4,40); l.ShowList(); t.InsertLNode(1,20); //初始化t t.InsertLNode(2,40); t.InsertLNode(3,70); t.InsertLNode(4,80); t.ShowList(); l-=t; //测试 l.ShowList(); cout<<l; return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -