?? test.cpp
字號:
#include "stdio.h"
#include "test1.h"
#include "string.h"
#include "iostream.h"
void main()
{
SqList L;
int i = 1;
ElemType e;
InitList_Sq(L);
e.age = 5;
strcpy(e.name,"xiao");
ListInsert_Sq( L, i, e);
cout<<(L.elem)->age<<endl;
cout<<(L.elem)->name<<endl;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -