数据结构复习-day03-SqStack栈的顺序存储
数据结构复习-day03
SqStack栈的顺序存储
SqStack栈的顺序存储
//SKinBoy
#include
using namespace std;
#define MAXSIZE 200
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
typedef int SElemType;
typedef int Status;
//以上定义看似繁琐,但如果在VScode等编辑器中打代码你会发现,会有关键字提醒,能够极大提高coding效率
typedef struct{
SElemType data[MAXSIZE];
int top;//栈顶指针
}SqStack;
Status Pushstack(SqStack *s,SElemType e){
//进栈操
共有 0 条评论