欢迎来到三一办公! | 帮助中心 三一办公31ppt.com(应用文档模板下载平台)
三一办公
全部分类
  • 办公文档>
  • PPT模板>
  • 建筑/施工/环境>
  • 毕业设计>
  • 工程图纸>
  • 教育教学>
  • 素材源码>
  • 生活休闲>
  • 临时分类>
  • ImageVerifierCode 换一换
    首页 三一办公 > 资源分类 > DOC文档下载  

    C语言《数据结构》实验报告】表达式的转换.doc

    • 资源ID:2384520       资源大小:48KB        全文页数:13页
    • 资源格式: DOC        下载积分:8金币
    快捷下载 游客一键下载
    会员登录下载
    三方登录下载: 微信开放平台登录 QQ登录  
    下载资源需要8金币
    邮箱/手机:
    温馨提示:
    用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP免费专享
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    C语言《数据结构》实验报告】表达式的转换.doc

    数据结构实验报告实验题目: 使用键盘输入表达式,计算表达式的值并输出;将表达式转化成后缀表达式输出,利用后缀表达式求表达式的值并输出。实验目的:使用栈的操作编写关于数据结构的程序。实验内容:写出程序并上机调试、通过。一、需求分析1、演示程序以用户和计算机的对话方式执行,即在计算机终端上显示“请输入表达式”时输入中缀表达式。然后计算机终端输出转换后的后缀表达式及计算后的结果。2、程序执行的命令包括:(1)构造链栈;(2)输入数据;(3)判断输入的表达式是否为非法表达式;(4)将中缀表达式转换为后缀表达式;(5)计算表达式的值;(6)输出。(7)结束4、本程序能将中缀表达式转换为后缀表达式,并且能计算表达式的值。5、输入及输出示例:例1:请输入表达式6+3*(6+5)后缀表达式:6 3 6 5 + * +计算结果为:39Press any key to continue 例2:请输入表达式6-3*(7+1ERROR:表达式错误Press any key to continue 二 概要设计1基本操作(1)、struct node操作结果:创建结构体(2)、int Searchexpression(char string1)初始条件:表达式string1已经存在。操作结果:判断表达式是否非法(3)、struct node *Initialization()操作结果:创建栈链。(4)、struct node *assort(struct node *s)初始条件:string1、string2已存在。操作结果:将中缀表达式转换为后缀表达式并存在string2中。(5)、struct node *calcolate(struct node *s)操作结果:求出表达式的值2、模块调用图主程序模块创建结构体判断表达式是否非法将中缀表达式转换为后缀表达式表达式求值三 详细设计1、每个模块:(1) 定义结构体struct node char data;int num;struct node *next; (2) 判断表达式是否非法int Searchexpression(char string1) int i1,b1,b2;int m;m=strlen(string1);if(string10<'0'|string10>'9')printf("ERROR:表达式缺操作数!n");return(WRONG);for(i1=0;i1<=m;i1+)if(string1i1='(')b1+;elseif(string1i1=')')b2+;if(b1!=b2)printf("ERROR:缺少括号n");return(WRONG);for(i1=0;i1<m;i1+)if('0'<=string1i1&&string1i1<='9'&&'0'<=string1i1+1&&string1i1+1<='9') printf("ERROR:表达式缺操作符!n");return(WRONG);for(i1=0;i1<=m;i1+)if(string1i1='+'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/') printf("ERROR:表达式缺操作数!n");return(WRONG);elseif(string1i1='-'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/') printf("ERROR:表达式缺操作数!n");return(WRONG);elseif(string1i1='*'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/')printf("ERROR:表达式缺操作数!n");return(WRONG);elseif(string1i1='/'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/')printf("ERROR:表达式缺操作数!n");return(WRONG);return(RIGHT); (3)、将中缀表达式转换为后缀表达式struct node *assort(struct node *s)/输入字符串struct node *p,*top;int i;top=s;int m;char a;m=strlen(string1); for(i=0;i<=m;i+)a=string1i;if('0'<=string1i&&string1i<='9')string2j=string1i;j+;elseswitch(a)case '(':p=(struct node *)malloc(sizeof(struct node);p->data=a;p->next=top;top=p;break; case '*':case '/':string2j=' 'j+;if(top->data='*')|(top->data='/')string2j=top->data;j+; /比其高,现将栈顶运算符出栈,再进栈。top->data=a;break;elsep=(struct node *)malloc(sizeof(struct node);/否,直接进栈p->data=a;p->next=top;top=p;break;case '+':case '-':string2j=' 'j+;if(top->data='+'|top->data='-'|top->data='*'|top->data='/')string2j=top->data;j+;top->data=a;break;else p=(struct node *)malloc(sizeof(struct node);p->data=a;p->next=top;top=p;break; case ')':string2j=' 'j+;if(top->data='')printf("input error");break;while(top->data!='(')string2j=top->data;j+;p=top;top=top->next;free(p);p=top;top=top->next;free(p);break;while(top->data!='')string2j=top->data;j+;p=top;top=top->next;free(p);string2j='#'printf("后缀表达式为:");for(i=0;i<j;i+)if(string2i!=' ')printf("%c ",string2i);printf("n ");return top; (4)表达式求值struct node *calcolate(struct node *s)struct node *top,*p;char *q;int x,y,a;int i,n;top=s;/指向栈顶的指针for(i=0;i<=j;i+)/遍历字符串string2if(string2i>='0'&&string2i<='9')q=&string2i;a=atoi(q); for(n=i;string2n>='0'&&string2n<='9'n+)p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;i=n-1;elseif(string2i='#') /遇#号结束标志,输出栈中的最后计算结果printf("计算结果为:%dn",top->num);elseif(string2i=' ')elsey=top->num;p=top;top=top->next;free(p);x=top->num;p=top;top=top->next;free(p);switch(string2i)case '+':a=x+y;p=(struct node *)malloc(sizeof(struct node);p->num=a;p->next=top;top=p;break;case '-':a=x-y;p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;break;case '*':a=x*y;p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;break;case '/':if(y=0) printf("ERROR:除数为零!n");a=(float)x/y;p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;break;return 0;(5)、主函数void main()struct node *top,*head;top=Initialization();/建立一个链栈,并返回栈顶指针printf("请输入表达式:n");gets(string1);if(Searchexpression(string1)head=assort(top);/中缀转化为后缀表达式calcolate(head);2、完整函数#include<stdio.h>#include<malloc.h>#include<string.h>#include<stdlib.h>#define MAX 60#define RIGHT 1#define WRONG 0#define DEMAX 15#define NULL 0char string1MAX;char string2MAX;int j=0;struct node /定义结构体。char data;int num;struct node *next;int Searchexpression(char string1) /判断非法表达式int i1,b1,b2;int m;m=strlen(string1);if(string10<'0'|string10>'9')printf("ERROR:表达式缺操作数!n");return(WRONG);for(i1=0;i1<=m;i1+)if(string1i1='(')b1+;elseif(string1i1=')')b2+;if(b1!=b2)printf("ERROR:缺少括号n");return(WRONG);for(i1=0;i1<m;i1+)if('0'<=string1i1&&string1i1<='9'&&'0'<=string1i1+1&&string1i1+1<='9') printf("ERROR:表达式缺操作符!n");return(WRONG);for(i1=0;i1<=m;i1+)if(string1i1='+'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/') printf("ERROR:表达式缺操作数!n");return(WRONG);elseif(string1i1='-'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/') printf("ERROR:表达式缺操作数!n");return(WRONG);elseif(string1i1='*'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/')printf("ERROR:表达式缺操作数!n");return(WRONG);elseif(string1i1='/'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/')printf("ERROR:表达式缺操作数!n");return(WRONG);return(RIGHT);struct node *Initialization()/初始化栈链,链栈不带头结点struct node *top;top=(struct node *)malloc(sizeof(struct node);top->data=''top->num=0;top->next=NULL;return top;struct node *assort(struct node *s)/输入字符串struct node *p,*top;int i;top=s;int m;char a;m=strlen(string1); for(i=0;i<=m;i+)a=string1i;if('0'<=string1i&&string1i<='9')string2j=string1i;j+;elseswitch(a)case '(':p=(struct node *)malloc(sizeof(struct node);p->data=a;p->next=top;top=p;break; case '*':case '/':string2j=' 'j+;if(top->data='*')|(top->data='/')string2j=top->data;j+; /比其高,现将栈顶运算符出栈,再进栈。top->data=a;break;elsep=(struct node *)malloc(sizeof(struct node);/否,直接进栈p->data=a;p->next=top;top=p;break;case '+':case '-':string2j=' 'j+;if(top->data='+'|top->data='-'|top->data='*'|top->data='/')string2j=top->data;j+;top->data=a;break;else p=(struct node *)malloc(sizeof(struct node);p->data=a;p->next=top;top=p;break; case ')':string2j=' 'j+;if(top->data='')printf("input error");break;while(top->data!='(')string2j=top->data;j+;p=top;top=top->next;free(p);p=top;top=top->next;free(p);break;while(top->data!='')string2j=top->data;j+;p=top;top=top->next;free(p);string2j='#'printf("后缀表达式为:");for(i=0;i<j;i+)if(string2i!=' ')printf("%c ",string2i);printf("n ");return top;struct node *calcolate(struct node *s)/计算表达式的值struct node *top,*p;char *q;int x,y,a;int i,n;top=s;/指向栈顶的指针for(i=0;i<=j;i+)/遍历字符串string2if(string2i>='0'&&string2i<='9')q=&string2i;a=atoi(q); for(n=i;string2n>='0'&&string2n<='9'n+)p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;i=n-1;elseif(string2i='#') /遇#号结束标志,输出栈中的最后计算结果printf("计算结果为:%dn",top->num);elseif(string2i=' ')elsey=top->num;p=top;top=top->next;free(p);x=top->num;p=top;top=top->next;free(p);switch(string2i)case '+':a=x+y;p=(struct node *)malloc(sizeof(struct node);p->num=a;p->next=top;top=p;break;case '-':a=x-y;p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;break;case '*':a=x*y;p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;break;case '/':if(y=0) printf("ERROR:除数为零!n");a=(float)x/y;p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;break;return 0;void main()/主函数struct node *top,*head;top=Initialization();/建立一个链栈,并返回栈顶指针printf("请输入表达式:n");gets(string1);if(Searchexpression(string1)head=assort(top);/中缀转化为后缀表达式calcolate(head);四 使用说明、测试分析及结果1、运行界面:Microsoft Visual C/C+2、测试结果例1:请输入表达式6+3*(6+5)后缀表达式:6 3 6 5 + * +计算结果为:39Press any key to continue 例2:请输入表达式6-3*(7+1ERROR:表达式错误Press any key to continue 五、实验总结教师评语:实验成绩:指导教师签名: 批阅日期:

    注意事项

    本文(C语言《数据结构》实验报告】表达式的转换.doc)为本站会员(laozhun)主动上传,三一办公仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知三一办公(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    备案号:宁ICP备20000045号-2

    经营许可证:宁B2-20210002

    宁公网安备 64010402000987号

    三一办公
    收起
    展开