题解 1733: 堆栈的使用

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

优质题解

Manchester- 堆栈的使用

摘要:解题思路:①:输入操作次数n②:输入n次操作③:P x :代表push操作,把x入栈④:O :代表出栈操作⑤:A :当栈不为空的时候,输出栈顶元素,栈为空的时候输出E注意事项:1):用字符串c[2]存……

堆栈的使用sgdfhjas

摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "stdlib.h"#define MaxSize 100typedef int ElemType;typedef ……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h> typedef struct linkedstack {    int data;    st……