c++STL中Stack

c++stl栈stack的头文件为:

1
#include <stack>

c++stl栈stack的成员函数介绍

操作 比较和分配堆栈
empty() 堆栈为空则返回真
pop() 移除栈顶元素
push() 在栈顶增加元素
size() 返回栈中元素数目
top() 返回栈顶元素

stack::empty

1
2
3
4
5
#include<iostream>  
#include <stack>
using namespace std;
int main () {
stack<int> mystack; int sum (0); for (int i=1;i<=10;i++) mystack.push(i); while (!mystack.empty()) { sum += mystack.top(); mystack.pop(); } cout << "total: " << sum << endl; return 0; }

stack::push/pop

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>  
#include <stack>
using namespace std;

int main ()
{
stack<int> mystack;
int sum (0);

for (int i=1;i<=10;i++) mystack.push(i);

while (!mystack.empty())
{
sum += mystack.top();
mystack.pop();
}

cout << "total: " << sum << 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
#include<iostream>
#include<stack>
using namespace std;
bool isMatch(string str)
{
stack<char> s;
bool flag=true;
int i=0;
while(str[i]!='\0')
{
switch(str[i])
{
case'(': s.push(str[i]);
break;
case'[':s.push(str[i]);
break;
case'{':s.push(str[i]);
break;
case']':
if(!s.empty()&&s.top()=='[')
s.pop();
else flag=false;
break;
case')':
if(!s.empty()&&s.top()=='(')
s.pop();
else flag=false;
break;
case '}':
if(!s.empty()&&s.top()=='{')
s.pop();
else flag=false;
break;
default:break;
}
i++;
}
if(!s.empty())
flag=false;
return flag;
}
int main()
{
string s;
cin>>s;
bool flag=isMatch(s);
if(flag) cout<<"yes";
else cout<<"no";
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
#include<iostream>
#include<stack>
using namespace std;
bool isMatch(string str)
{
stack<char> s;
bool flag=true;
int i=0;
while(str[i]!='\0')
{
switch(str[i])
{
case'(': s.push(str[i]);
break;
case'[':s.push(str[i]);
break;
case'{':s.push(str[i]);
break;
case']':
if(!s.empty()&&s.top()=='[')
s.pop();
else flag=false;
break;
case')':
if(!s.empty()&&s.top()=='(')
s.pop();
else flag=false;
break;
case '}':
if(!s.empty()&&s.top()=='{')
s.pop();
else flag=false;
break;
default:break;
}
i++;
}
if(!s.empty())
flag=false;
return flag;
}
int main()
{
string s;
cin>>s;
bool flag=isMatch(s);
if(flag) cout<<"yes";
else cout<<"no";
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#define MAXSIZE 10
//定义存储整型的栈
typedef struct node
{
double data[MAXSIZE];
int top;
} SeqStack;
//定义存储字符型的栈
typedef struct nodeChar
{
char data[MAXSIZE];
int top;//栈顶指针
} SeqStackchar;
//创建整型栈
SeqStack *creat_num()
{
SeqStack *s;
s = (SeqStack *)malloc(sizeof(SeqStack));
s->top = -1;
return s;
}
//创建字符串栈
SeqStackchar *creat_char()
{
SeqStackchar *s;
s = (SeqStackchar *)malloc(sizeof(SeqStackchar));
s->top = -1;
return s;
}
int isEmpty(SeqStackchar *s)
{
if(s->top==-1) return 1;
else return 0;
}
char GetTop_char(SeqStackchar *s)
{
if(s->top==-1) exit(1);
if(s->top!=-1)
return s->data[s->top];
}
double GetTop_num(SeqStack *s)
{
if(s->top==-1) exit(1);
if(s->top!=-1)
return s->data[s->top];
}
int isOperator(char op)
{
if(op=='+'||op=='-'||op=='*'||op=='/'||op=='^') return 1;
else return 0;

}
void push_num(SeqStack *S,double e)
{
if(MAXSIZE-1==S->top)
{
printf("error!\n");
exit(1);
}
//栈顶指向的元素有值
++(S->top);
S->data[S->top]=e;
}
void push_char(SeqStackchar *S,char e)
{
if(MAXSIZE-1==S->top)
{
printf("error\n");
exit(1);
}
//栈顶指向的元素有值
++(S->top);
S->data[S->top]=e;
}
// 出栈
char pop_char(SeqStackchar *S)
{
char e;
//将栈顶元素出栈,传给e
if(-1==S->top)
{
printf("error!\n");
exit(1);
}
e=S->data[S->top];
--(S->top);
return e;
}
double pop_num(SeqStack *S)
{
double e;
//将栈顶元素出栈,传给e
if(-1==S->top)
{
printf("error!\n");
exit(0);
}
e=S->data[S->top];
--(S->top);
return e;
}
int priority(char op)
{
switch(op)
{
case '\0':
return -1;
case '(':
return 0;
case '+':
case '-':
return 1;
case '*':
case '/':
case '^':
return 2;
default :
return -1;
}
}
double read_number(char str[],int *i)
{
double x=0.0;
int k = 0;
while(str[*i] >='0' && str[*i]<='9') // 处理整数部分
{
x = x*10+(str[*i]-'0');
(*i)++;
}

if(str[*i]=='.') // 处理小数部分
{
(*i)++;
while(str[*i] >= '0'&&str[*i] <='9')
{
x = x * 10 + (str[*i]-'0');
(*i)++;
k++;
}
}
while(k!=0)
{
x /= 10.0;
k--;
}
return x;
}
// 把中缀表达式转换为后缀表达式,返回后缀表达式的长度(包括空格)
void posttoFix(char pre[],char post[],int *n)
{
int i = 0 ,j=0,q=0;
SeqStackchar *stack=creat_char(); // 初始化存储操作符的栈
push_char(stack,'\0'); // 首先把结束标志‘\0’放入栈底
while(pre[i]!='\0')
{
if((pre[i]>='0' && pre[i] <='9')||pre[i] =='.') // 遇到数字和小数点直接写入后缀表达式
{
post[j++] = pre[i];
(*n)++;
}
else if(pre[i]=='s')
{
i++;
(*n)++;
if(pre[i]=='i')
{
i++;
(*n)++;
if(pre[i]=='n')
{
i++;
(*n)++;
if(pre[i]=='(')
{
i++;
(*n)++;
post[j++]='s';
post[j++]='i';
post[j++]='n';
post[j++]='(';
while(pre[i]!=')'&&pre[i]!='\0')
{
post[j++]=pre[i];
i++;
(*n)++;
}
if(pre[i]!=')') {printf("error!\n");exit(1);}
post[j++]=')';//为了赋给后面的操作数
}
}
}
}
else if(pre[i]=='c')
{
i++;
(*n)++;
if(pre[i]=='o')
{
i++;
(*n)++;
if(pre[i]=='s')
{
i++;
(*n)++;
if(pre[i]=='(')
{ i++;
(*n)++;
post[j++]='c';
post[j++]='o';
post[j++]='s';
post[j++]='(';
while(pre[i]!=')'&&pre[i]!='\0')
{

post[j++]=pre[i];
i++;
(*n)++;
} if(pre[i]!=')') {printf("error!\n");exit(1);}
post[j++]=')';//为了赋给后面的操作数

}
}
}
}
else if(pre[i]=='t')
{
i++;
(*n)++;
if(pre[i]=='a')
{
i++;
(*n)++;
if(pre[i]=='n')
{
i++;
(*n)++;
if(pre[i]=='(')
{ i++;
(*n)++;
post[j++]='t';
post[j++]='a';
post[j++]='n';
post[j++]='(';
while(pre[i]!=')'&&pre[i]!='\0')
{

post[j++]=pre[i];
i++;
(*n)++;
} if(pre[i]!=')') {printf("error!\n");exit(1);}
post[j++]=')';//为了赋给后面的操作数

}
}
}
}
else if (pre[i]=='(') // 遇到“(”不用比较直接入栈
push_char(stack,pre[i]);
else if(pre[i] ==')') // 遇到右括号将其对应左括号后的操作符(操作符栈中的)全部写入后缀表达式
{
while(GetTop_char(stack)!='(')
{
post[j++]=pop_char(stack);
(*n)++;
}
pop_char(stack); // 将“(”出栈,后缀表达式中不含小括号
}
else if(isOperator(pre[i]))
{
post[j++]=' '; // 用空格分开操作数(
(*n)++;
while(priority(pre[i]) <= priority(GetTop_char(stack)))
{
// 当前的操作符小于等于栈顶操作符的优先级时,将栈顶操作符写入到后缀表达式,重复此过程
post[j++] = pop_char(stack);
(*n)++;
}
push_char(stack,pre[i]); // 当前操作符优先级大于栈顶操作符的优先级,将该操作符入栈
}
i++;
}
while(stack->top!=-1)// 将所有的操作符加入后缀表达式
{
post[j++] =pop_char(stack);
(*n)++;
}
post[j]='\0';
}

double Operate(double a,char op,double b)
{
int i;
double result=1;
switch(op)
{
case '+':
result=a+b;
break;
case '-':
result=a-b;
break;
case '*':
result=a*b;
break;
case '/':
result=a/b*1.0;
break;
case '^':
for(i=0; i<b; i++)
result*=a;
break;
default:
exit(1);
}
return result;

}
double postfix_value(char post[])
{
SeqStack *stack=creat_num(); // 操作数栈
int i=0,q;
double temp;
double result;
double x1,x2;
char str[20];
int k;
while(post[i] !='\0')
{
if(post[i] >='0' && post[i] <='9')
push_num(stack,read_number(post,&i));
else if(post[i] == ' ')
i++;
else if(post[i]=='s')
{
k=0;
i++;
if(post[i]=='i')
{
i++;
if(post[i]=='n')
{
i++;
if(post[i]=='(')
{
i++;
while(post[i]!=')')
{
str[k++]=post[i];
i++;
}
i++;
str[k]='\0';
q=0;
result=read_number(str,&q);
push_num(stack,sin(result));
}
}
}
}
else if(post[i]=='c')
{
k=0;
i++;
if(post[i]=='o')
{
i++;
if(post[i]=='s')
{
i++;
if(post[i]=='(')
{
i++;
while(post[i]!=')')
{
str[k++]=post[i];
i++;
}
i++;
str[k]='\0';
q=0;
result=read_number(str,&q);
push_num(stack,sin(result));

}
}
}
}
else if(post[i]=='t')
{
k=0;
i++;
if(post[i]=='a')
{
i++;
if(post[i]=='n')
{
i++;
if(post[i]=='(')
{
i++;
while(post[i]!=')')
{
str[k++]=post[i];
i++;
}
i++;
str[k]='\0';
q=0;
result=read_number(str,&q);
push_num(stack,sin(result));
}
}
}
}
else
{
x2=pop_num(stack);
x1=pop_num(stack);
temp=Operate(x1,post[i],x2);
push_num(stack,temp);
i++;
}
}
return GetTop_num(stack);
}
int main()
{
char exp[100];
printf("表达式:");
char post[100] ;
gets(exp);
fflush(stdin);
int i,n=0; // 返回后缀表达式的长度
posttoFix(exp,post,&n);
printf("后缀表达式为:");
for(i =0 ; post[i]!='\0'; i++)
printf("%c",post[i]);
printf("\n由后缀表达式计算出的数值结果:\n");
printf("%f",postfix_value(post));
return 0;
}