会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
纯洁的坏蛋
博客园
首页
博问
闪存
新随笔
订阅
管理
2013年4月26日
c语言栈Stack简单实现
摘要: #include #include #define MAX_SIZE 5typedef struct Stack{ int top; int data[MAX_SIZE];}Stack;Stack* initStack(){ Stack *s = (Stack *)malloc(sizeof(Sta...
阅读全文
posted @ 2013-04-26 20:44 纯洁的坏蛋
阅读(584)
评论(0)
推荐(0)
编辑