#include <iostream>
using namespace std;
const int MAX=5; //栈中最多保存5个数据
class stack {
public:
void init(void) { top=0;} //初始化函数
void push(int x); //入栈函数
int pop(void); //出栈函数
int gettop() { return top;} //获取栈顶指针
private:
int num[MAX]; //存放栈的数组
int top; //栈顶指针
bool isfull() {
return top==MAX?true:false;
}
bool isempty() {
return top==-1?true:false;
}
};
void stack::push(int x) {
if(isfull()) {
cout << "Stack is full!" << endl;
return;
};
num[top]=x;
top++;
}
int stack::pop(void) {
top--;
if(isempty()) {
cout << "Stack is empty!" << endl;
return 0;
};
return num[top];
}
int main() {
stack s;
s.init();
s.push(1);
s.push(2);
s.push(3);
s.push(4);
s.push(5);
for(int i=0; i<3; i++)
cout << s.pop() << endl;
cout << endl;
s.push(3);
s.push(4);
s.push(5);
s.push(6);
cout << endl;
for(i=0; i<5; i++)
cout << s.pop() << endl;
s.pop();
return 0;
}
【数据结构】栈(stack)的C++实现
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 栈(Stack) 上一篇我们说到了列表,它是一种最自然的数据组织方式,如果对数据的存储顺序要求不重要,那么列表就是...