C++编写静态栈源程序 时间:2012-02-22 03:55:36 【文件属性】: 文件名称:C++编写静态栈源程序 文件大小:1KB 文件格式:CPP 更新时间:2012-02-22 03:55:36 c++静态栈 c++编写的静态栈 define max 50 #include class stack { int *q,*top,num; public: void push(int x) { *top=x; top++; num++; } void pop() {if(top==q) cout<<"栈为空!"< 立即下载