?? douwenjian1.h
字號:
# include <stdio.h>
# include <stdlib.h>
# define SIZEMAX 500
# define MAXS 100
# define LEN sizeof(struct rowlist)
struct rowlist{
int row;
int character;
char ch[SIZEMAX];
};
struct linkst {
struct rowlist date[SIZEMAX + 1];
int mrow;
};
//字符串定義,將整個程序以這種數據結構的形式存儲
typedef struct ElemType{
char c;
int row;
}ElemType;
struct sqstack{
struct ElemType * base;
struct ElemType * top;
int stacksize;
};
//棧定義,在本程序中用于計算函數個數時用,存儲的是“{”和“}”
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -