栈的基本操作(C语言实现).pdf
《栈的基本操作(C语言实现).pdf》由会员分享,可在线阅读,更多相关《栈的基本操作(C语言实现).pdf(5页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、/栈的基本操作#define ERROR 0#define OVERFLOW -2#define Stack_init_size 100#define Stackincrement 10#include#include typedef int SElemType;typedef struct SElemType*base;SElemType*top;int stacksize;SqStack;void main()SElemType e;SqStack S;void InitStack(SqStack*S);/构造栈的声明 void GetTop(SqStack*S,SElemType e);
2、/取栈顶元素函数声明 void Push(SqStack*S,SElemType e);/进栈函数声明 void Pop(SqStack*S,SElemType e);/弹出栈顶元素函数声明 printf(构造一个栈并读入数据:n);InitStack(&S);/构造栈 GetTop(&S,e);/取栈顶元素 Push(&S,e);/进栈 Pop(&S,&e);/弹出栈顶元素 printf(n);GetTop(&S,e);/取栈顶元素 void InitStack(SqStack*S)/构造栈 int i,n;SElemType e;S-base=(SElemType*)malloc(Stac
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 基本 操作 语言 实现
限制150内