会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
寻觅beyond
everything will be ok
首页
新随笔
联系
管理
2016年10月21日
栈基本操作(顺序栈+数制转换)
摘要: #include #include using namespace std; //定义初始化长度和每次增加的长度 const int STACK_INIT_SIZE=10; const int STACK_INCREAMENT=2; struct Stack{ int* base; //栈底 int* top; //栈顶 int stacksize; //已分...
阅读全文
posted @ 2016-10-21 22:20 寻觅beyond
阅读(2992)
评论(0)
推荐(0)
编辑
公告
返回顶部