?? 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 + -