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