c语言计算器源代码_第1页
c语言计算器源代码_第2页
c语言计算器源代码_第3页
免费预览已结束,剩余1页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、e<>#inclu#include<>#include<> #definemaxsize100 typedefdoubledatatype1; typedefchardatatype2; typedefstructstack1 datatype1data1maxsize; inttop1; /* 栈顶元素 */ seqstack1,*pseqstack1;/* 顺序栈 */ typedefstructstack2datatype2data2maxsize; inttop2; /* 栈顶元素 */ seqstack2,*pseqstack2;/* 顺序栈 */

2、 /* 栈的初始化 */ pseqstack1init_seqstack1(void)pseqstack1S; S=(pseqstack1)malloc(sizeof(pseqstack1);if(S)S->top1=-1; returnS; pseqstack2init_seqstack2(void)pseqstack2S; S=(pseqstack2)malloc(sizeof(pseqstack2);if(S)S->top2=-1; returnS;/* 判断栈空 */ intempty_seqstack1(pseqstack1S) if(S->top1=-1) ret

3、urn1;elsereturn0;intempty_seqstack2(pseqstack2S) if(S->top2=-1) return1;elsereturn0;/*X 入栈 */intpush_seqstack1(pseqstack1S,datatype1X) if(S->top1=maxsize-1)printf(" 栈满,无法入栈! n"); return0;elseS->top1+;S->data1S->top1=X; return1;intpush_seqstack2(pseqstack2S,datatype2X) if(S-&

4、gt;top2=maxsize-1)printf(" 栈满,无法入栈! n"); return0;elseS->top2+;S->data2S->top2=X; return1;/*X 出栈 */intpop_seqstack1(pseqstack1S,datatype1*X) if(empty_seqstack1(S) return0;else*X=S->data1S->top1;S->top1-;return1;intpop_seqstack2(pseqstack2S,datatype2*X)if(empty_seqstack2(S)

5、return0;else*X=S->data2S->top2;S->top2-;return1;/*求栈顶元素 */ intgettop_seqstack1(pseqstack1S,datatype1*X)if(empty_seqstack1(S) return0;else*X=S->data1S->top1; return1; intgettop_seqstack2(pseqstack2S,datatype2*X)if(empty_seqstack2(S) return0;else*X=S->data2S->top2;return1;/* 判断字符是

6、否为操作数。若是返回 1,否则返回 0*/ intisnum(charc)if(c>='0'&&c<='9')return1;elsereturn0;/* 求后缀表达式的值 */ doublepostfix_exp(char*A)pseqstack1S/;* 定义栈 S*/ doubleoperand=0;doubleresult;/*存放栈顶元素 */doublea;/*运算符 ch 前的操作数出栈存入a*/doubleb;/*运算符 ch 后的操作数出栈存入b*/doublec;/*c=achb*/charch; /*存放读取到的

7、表达式(A)的字符*/ ch=*A+;/* 读表达式字符 =>A*/S=init_seqstack1(); /* 初始化栈 */ while(ch!='#')/* 遇到元素 !='#'时*/if(isnum(ch)/* 判断 ch 是否为数字字符 ,计算出操作数 */ operand=operand*10+(ch-'0');else /*否则 */ if(operand) push_seqstack1(S,operand);/当前字符不是数字,操作数结束,要入栈*/ operand=0; if(ch!=''&&

8、;ch!='')pop_seqstack1(S,&b);/* 运算符 ch 后的操作数出栈存入 b*/pop_seqstack1(S,&a);/* 运算符 ch 前的操作数出栈存入 a*/switch(ch) /* 求 achb=?将结果赋给 c*/case'+': c=a+b; break;case'-':c=a-b;break;case'*':c=a*b;break;case'/': if(b!=0) c=a/b;elseprintf("分母为零!");push_seqsta

9、ck1(S,c); /*将 c 压入栈中 */ch=*A+; /* 指针向下移动一位 */* 遇到'#'循环结束 */gettop_seqstack1(S,&result);/* 此时栈顶元素即为计算结果 result*/returnresult;/* 优先级判断函数 */intpriority(charop)switch(op)case'#':return1;case')':return2;case'+':case'-':return3;case'*':case'/':re

10、turn4;case'(':return5;default:return0;/* 将指针 infixexp 指向的中缀表达式转换为指针 postfixexp 指向的后缀表达式 */ intinfix_exp_value(char*infixexp,char*postfixexp)pseqstack2ST 定义栈 S*/intcount=0;charw; /*存放读取到的表达式(infixexp)的字符*/ charc; /* 存放栈顶元素 */ chartopelement;/* 存出栈元素 */S=init_seqstack2(); /* 初始化栈 */if(!S) /* 栈

11、的初始化判断 */printf(" 栈初始化失败 !");return0;push_seqstack2(S,#);/*将结束符'#'加入运算符栈S中*/w=*infixexp; /* 读表达式字符 =>w*/while(gettop_seqstack2(S,&c),c)!=#|w!=#)/*<3> 栈顶元素不等于'#'或 w 不等于 '#'时循环*/if(isnum(w)/*判断w是否为操作数,若是直接输出,读下一个字符=>w转<3>*/if(count)*postfixexp=&#

12、39;'postfixexp+;count=0;*postfixexp=w;postfixexp+;w=*(+infixexp);else /*w 若是运算符分类如下 */count=1;if(gettop_seqstack2(S,&c),c)='('&&w=')')/*如果栈顶为'('并且 w 为')'则'(' 出栈不输出,读下一个字符=>w转<3>*/pop_seqstack2(S,&topelement);/*将'('出栈存入 tope

13、lement*/ w=*(+infixexp);elseif(gettop_seqstack2(S,&c),c)='('|priority(gettop_seqstack2(S,&c),c)<priority(w)/*如果栈顶为'('或者栈顶优先级小于w优先级,则w入栈,读下一个字符=>w,转<3>*/ push_seqstack2(S,w); w=*(+infixexp);else/*否则*/*从运算符栈中出栈并输出,转<3>*/pop_seqstack2(S,&topelement); *postf

14、ixexp=topelement; postfixexp+;*postfixexp=#;/*在指针postfixexp指向的后缀表达式结尾追加字符'#'*/ *(+postfixexp)='0'/* 在指针 postfixexp 指向的后缀表达式最后追加结束符 '0'*/ return1;/* 主函数 */intmain()inti=0;charAmaxsize;charBmaxsize;printf("请输入表达式,如:20+13#必须以#号结尾!n"); /*1+2*(9+7)-4/2#23+(12*3-2)/4+34*5/7)+108/9#*/ Ai=ge

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论