?? dic_slist.c
字號:
/* 本程序提供了用順序表實現字典的存儲表示定義*/
#define MAXNUM 100
typedef int KeyType ;
typedef int DataType;
typedef struct {
KeyType key; /* 字典元素的關鍵碼字段 */
DataType value; /* 字典元素的屬性字段 */
} DicElement;
typedef struct {
int n; /* n<=MAXNUM,為字典中元素的個數 */
DicElement element[MAXNUM];
} SeqDictionary;
int main(){
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -