没有合适的资源?快使用搜索试试~ 我知道了~
C++ - Stack - 自制栈 - 简易版
2星 需积分: 16 1 下载量 18 浏览量
2020-09-20
15:57:26
上传
评论
收藏 2KB TXT 举报
温馨提示
使用C++自制栈,根据大小改变类,方法简单。这是简易版,会发完成版的。打开.txt文件,修改typedef (类型) type,修改const int big = ...。把修改后的源码打在编译器里,保存Stack.h,#include <文件夹路径\Stack.h>就可以用了。
资源推荐
资源详情
资源评论
#include <bits/stdc++.h>
using namespace std;
typedef int type;
class Stack
{
protected:
const int big = 10000;
type data[10010];
int t = 0;
public:
void push(type x)
{
if (t >= big)
{
cout << "StackError:Overflow" << endl;
return;
}
data[++t] = x;
}
type top()
{
return data[t];
}
void pop()
{
if (t <= 0)
{
cout << "StackError:Underflow" << endl;
return;
}
using namespace std;
typedef int type;
class Stack
{
protected:
const int big = 10000;
type data[10010];
int t = 0;
public:
void push(type x)
{
if (t >= big)
{
cout << "StackError:Overflow" << endl;
return;
}
data[++t] = x;
}
type top()
{
return data[t];
}
void pop()
{
if (t <= 0)
{
cout << "StackError:Underflow" << endl;
return;
}
资源评论
- xiaoyin352020-11-22很简单,我会出更好的
xiaoyin35
- 粉丝: 10
- 资源: 1
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功