?? stack.h
字號:
#include"common.h"
#define STACKINITSIZE 100
typedef struct{
ElementType *base;
ElementType *top;
int stacksize;
}SqStack;
status InitSqStack(SqStack &s);
status DestroySqStack(SqStack &s);
status ClearSqStack(SqStack &s);
status IsSqStackEmpty(SqStack &s);
status IsSqStackFull(SqStack &s);
int SqStackLength(SqStack &s);
status GetSqStackTop(SqStack &s,ElementType &e);
status Push(SqStack &s,ElementType e);
status Pop(SqStack &s,ElementType &e);
status PrintSqStack(SqStack &s);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -