#include
using namespace std;
typedef int Elemtype;
#define Maxsize 10
#define ERROR 0
#define OK 1
typedef struct
{
Elemtype data[Maxsize];
int top;
}SqStack;
void InitStack(SqStack& S)
{
S.top = -1;
}
bool StackEmpty(SqStack S)
{
if (S.top == -1)
return OK;
else
return ERROR;
}
bool Push(SqStack& S, Elemtype x)
{
if (S.top == Maxsize - 1)
return ERROR;
S.data[++S.top] = x;
return OK;
}
bool Pop(SqStack& S, Elemtype& x)
{
if (S.top == -1)
return ERROR;
x = S.data[S.top--];
return OK;
}
bool GetTop(SqStack& S, Elemtype& x)
{
if (S.top == -1)
return ERROR;
x = S.data[S.top];
return OK;
}
int main(void)
{
SqStack S;
InitStack(S);
Push(S, 1);
Push(S, 2);
Push(S, 3);
Push(S, 4);
Push(S, 5);
int top = 0;
GetTop(S, top);
cout << "stack top: " << top << endl;
if (StackEmpty(S) == 1)
cout << "Stack is empty"<< endl;
else
cout << "Stack is not empty"<< endl;
int x = 0;
Pop(S, x);
cout << "pop1: " << x << endl;
Pop(S, x);
cout << "pop2: " << x << endl;
Pop(S, x);
cout << "pop3: " << x << endl;
Pop(S, x);
cout << "pop4: " << x << endl;
Pop(S, x);
cout << "pop5: " << x << endl;
if (StackEmpty(S) == 1)
cout << "Stack is empty" << endl;
else
cout << "Stack is not empty" << endl;
return 0;
}

- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171