Class Template
首先我们可以用类来实现一个int型数据的栈,代码如下
class Stack {
int pool[100];
int top;
public:
Stack() : top(0) {}
2022-04-18