编程实现:
编程实现:
日期:2013-11-08 21:20:41 人气:1
#include
using namespace std;
class stack {
private:
int a[1000];
int top;
public:
void ini() {
top = -1;
}
int glance() {
return a[top];
}
void push(int x) {
a[++top] = x;
}
int pop() {
return a[--top + 1];
}
bo