堆栈四则运算

堆栈四则运算

ID:38207863

大小:42.00 KB

页数:6页

时间:2019-05-25

堆栈四则运算_第1页
堆栈四则运算_第2页
堆栈四则运算_第3页
堆栈四则运算_第4页
堆栈四则运算_第5页
资源描述:

《堆栈四则运算》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、#include#include#include#include#defineTRUE1#defineFALSE0#defineSTACK_INIT_SIZE100#defineSTACKINCREMENT20/************************************************************************/typedefstruct{int*pbase;int*ptop;intstacksize;}stack;/************************

2、************************************************/charoperator[7]="+-*/()!";charoptr;intopnd=-1;intresult;charprioritytable[7][7]={{'>','>','<','<','<','>','>'},{'>','>','<','<','<','>','>'},{'>','>','>','>','<','>','>'},{'>','>','>','>','<','>','>'},{'<','<','<','<','<','=','o'},{'>','>','>','>

3、','o','>','>'},{'<','<','<','<','<','o','='},};/************************************************************************///构造一个空栈stackinitstack(){stacks;s.pbase=(int*)malloc(STACK_INIT_SIZE*sizeof(int));if(!s.pbase){printf("分配失败");exit(-1);}else{s.ptop=s.pbase;s.stacksize=STACK_INIT_SIZE;}retur

4、ns;}/************************************************************************///销毁一个栈voiddestorystack(stack*s){if(s->pbase){free(s->pbase);s->ptop=s->pbase=NULL;}}/************************************************************************///栈不空,则返回栈顶intgettop(stacks){return*(s.ptop-1);}/*********

5、***************************************************************///压栈intpushstack(stack*s,inte){if(s->ptop-s->pbase==STACK_INIT_SIZE){s->pbase=(int*)realloc(s->pbase,(s->stacksize+STACKINCREMENT)*sizeof(int));if(!s->pbase){return0;}s->ptop=s->pbase+s->stacksize;s->stacksize=s->stacksize+STACKINC

6、REMENT;}*(s->ptop++)=e;return1;}/************************************************************************/intpop(stack*s,int*e){if(s->ptop==s->pbase){return0;}*e=*--(s->ptop);return1;}/************************************************************************///比较两个字符的优先级charcheckchar(charoperato

7、r_1,charoperator_2){inti,j;i=strchr(operator,operator_1)-operator;j=strchr(operator,operator_2)-operator;returnprioritytable[i][j];}/************************************************************************///判断是否为操作数isoperator(cha

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。