?? c10-2.h
字號:
/* c10-2.h 靜態鏈表類型 */
#define SIZE 100 /* 靜態鏈表容量 */
typedef int KeyType; /* 定義關鍵字類型為整型 */
typedef struct
{
KeyType key; /* 關鍵字項 */
InfoType otherinfo; /* 其它數據項,具體類型在主程中定義 */
}RedType; /* 記錄類型 */
typedef struct
{
RedType rc; /* 記錄項 */
int next; /* 指針項 */
}SLNode; /* 表結點類型 */
typedef struct
{
SLNode r[SIZE]; /* 0號單元為表頭結點 */
int length; /* 鏈表當前長度 */
}SLinkListType; /* 靜態鏈表類型 */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -