c++上机题 定义整型堆栈类

c++上机题定义整型堆栈类最好能说下新建工程代码应该放在哪个文件里... c++上机题 定义整型堆栈类最好能说下新建工程代码应该放在哪个文件里 展开
 我来答
冯凯在哪里
2018-04-13 · TA获得超过203个赞
知道小有建树答主
回答量:163
采纳率:0%
帮助的人:47.7万
展开全部
test.h
#include<iostream>
using namespace std;

class stack {
public:
stack();
~stack();
void push(int item);
void pop();
int top();
int size();
private:
int* buf;
int index;
};
test.cpp
#include "test.h"

stack::stack() {
buf = new int[50];
for (int i = 0; i < 50; ++i) {
buf[i] = -1;
}
index = 0;
}

stack::~stack() {
delete[] buf;
}

void stack::push(int item) {
if (index >= 50) {
return;
}

buf[index++] = item;
}

void stack::pop() {
if (index < 0) {
return;
}
--index;
}

int stack::top() {
if (index < 0) {
return -1;
}
if (index == 0) {
return buf[index];
}
return buf[index - 1];
}

int stack::size() {
return index;
}

int main() {
stack s;
int a[] = {10, 8, 12, 5, 7, 1, 3, 25, 15, 67, 80};
for (int i = 0; i <= 10; ++i) {
s.push(a[i]);
}
int size = s.size();
for (int j = 0; j < size; ++j) {
cout << s.top() << " ";
s.pop();
}
cout << endl;
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式