链接: 王道2021数据结构链接 提取码:rpy8 –来自百度网盘超级会员V4的分享`
#include <stdio.h>
#include <stdlib.h>
#define MaxSize 10
typedef ElemType int;
typedef struct{
ElemType data[MaxSize];
int top;
}SqStack;
void InitStack(SqStack &S){
S.top = -1;
}
bool StackEmpty(SqStack S){
return (S.top == -1);
}
bool Push(SqStack &S, ElemType x){
if(S.top == MaxSize - 1) return false;
S.top++;
S.data[S.top] = x;
return true;
}
bool Pop(SqStack &S, ElemType &x){
if(S.top = -1) return false;
x = S.top;
S.top--;
return true;
}
bool GetTop(SqStack S, ElemType &x){
if(S.top = -1) return false;
x = S.data[S.top];
return true;
}
void testStack(){
SqStack S;
InitStack(S);
}
|