版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、數(shù)據(jù)結(jié)構(gòu)實(shí)驗(yàn)報(bào)告實(shí)驗(yàn)題目: 使用鍵盤輸入表達(dá)式,計(jì)算表達(dá)式的值并輸出;將表達(dá)式轉(zhuǎn)化成后綴表達(dá)式輸出,利用后綴表達(dá)式求表達(dá)式的值并輸出。實(shí)驗(yàn)?zāi)康模菏褂脳5牟僮骶帉戧P(guān)于數(shù)據(jù)結(jié)構(gòu)的程序。實(shí)驗(yàn)內(nèi)容:寫出程序并上機(jī)調(diào)試、通過。一、需求分析1、演示程序以用戶和計(jì)算機(jī)的對(duì)話方式執(zhí)行,即在計(jì)算機(jī)終端上顯示“請(qǐng)輸入表達(dá)式”時(shí)輸入中綴表達(dá)式。然后計(jì)算機(jī)終端輸出轉(zhuǎn)換后的后綴表達(dá)式及計(jì)算后的結(jié)果。2、程序執(zhí)行的命令包括:(1)構(gòu)造鏈棧;(2)輸入數(shù)據(jù);(3)判斷輸入的表達(dá)式是否為非法表達(dá)式;(4)將中綴表達(dá)式轉(zhuǎn)換為后綴表達(dá)式;(5)計(jì)算表達(dá)式的值;(6)輸出。(7)結(jié)束4、本程序能將中綴表達(dá)式轉(zhuǎn)換為后綴表達(dá)式,并且能
2、計(jì)算表達(dá)式的值。5、輸入及輸出示例:例1:請(qǐng)輸入表達(dá)式6+3*(6+5)后綴表達(dá)式:6 3 6 5 + * +計(jì)算結(jié)果為:39Press any key to continue 例2:請(qǐng)輸入表達(dá)式6-3*(7+1ERROR:表達(dá)式錯(cuò)誤Press any key to continue 二 概要設(shè)計(jì)1基本操作(1)、struct node操作結(jié)果:創(chuàng)建結(jié)構(gòu)體(2)、int Searchexpression(char string1)初始條件:表達(dá)式string1已經(jīng)存在。操作結(jié)果:判斷表達(dá)式是否非法(3)、struct node *Initialization()操作結(jié)果:創(chuàng)建棧鏈。(4)、st
3、ruct node *assort(struct node *s)初始條件:string1、string2已存在。操作結(jié)果:將中綴表達(dá)式轉(zhuǎn)換為后綴表達(dá)式并存在string2中。(5)、struct node *calcolate(struct node *s)操作結(jié)果:求出表達(dá)式的值2、模塊調(diào)用圖主程序模塊創(chuàng)建結(jié)構(gòu)體判斷表達(dá)式是否非法將中綴表達(dá)式轉(zhuǎn)換為后綴表達(dá)式表達(dá)式求值三 詳細(xì)設(shè)計(jì)1、每個(gè)模塊:(1) 定義結(jié)構(gòu)體struct node char data;int num;struct node *next; (2) 判斷表達(dá)式是否非法int Searchexpression(char str
4、ing1) int i1,b1,b2;int m;m=strlen(string1);if(string10<'0'|string10>'9')printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);for(i1=0;i1<=m;i1+)if(string1i1='(')b1+;elseif(string1i1=')')b2+;if(b1!=b2)printf("ERROR:缺少括號(hào)n");return(WRONG);for(i1=0;i1<m
5、;i1+)if('0'<=string1i1&&string1i1<='9'&&'0'<=string1i1+1&&string1i1+1<='9') printf("ERROR:表達(dá)式缺操作符!n");return(WRONG);for(i1=0;i1<=m;i1+)if(string1i1='+'&&(string1i1+1='+'|string1i1+1='-'|s
6、tring1i1+1='*'|string1i1+1='/') printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);elseif(string1i1='-'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/') printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);elseif(string1i1
7、='*'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/')printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);elseif(string1i1='/'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/
8、39;)printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);return(RIGHT); (3)、將中綴表達(dá)式轉(zhuǎn)換為后綴表達(dá)式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=string1
9、i;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+; /比其高,現(xiàn)將棧頂運(yùn)算符出棧,再進(jìn)棧。top->data=a;break;el
10、sep=(struct node *)malloc(sizeof(struct node);/否,直接進(jìn)棧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;e
11、lse 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->
12、next;free(p);break;while(top->data!='')string2j=top->data;j+;p=top;top=top->next;free(p);string2j='#'printf("后綴表達(dá)式為:");for(i=0;i<j;i+)if(string2i!=' ')printf("%c ",string2i);printf("n ");return top; (4)表達(dá)式求值struct node *calcolate(stru
13、ct node *s)struct node *top,*p;char *q;int x,y,a;int i,n;top=s;/指向棧頂?shù)闹羔榝or(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 n
14、ode );p->num=a;p->next=top;top=p;i=n-1;elseif(string2i='#') /遇#號(hào)結(jié)束標(biāo)志,輸出棧中的最后計(jì)算結(jié)果printf("計(jì)算結(jié)果為:%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=(
15、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 &
16、#39;/':if(y=0) printf("ERROR:除數(shù)為零!n");a=(float)x/y;p=(struct node *)malloc(sizeof(struct node );p->num=a;p->next=top;top=p;break;return 0;(5)、主函數(shù)void main()struct node *top,*head;top=Initialization();/建立一個(gè)鏈棧,并返回棧頂指針printf("請(qǐng)輸入表達(dá)式:n");gets(string1);if(Searchexpression(st
17、ring1)head=assort(top);/中綴轉(zhuǎn)化為后綴表達(dá)式calcolate(head);2、完整函數(shù)#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 /定義結(jié)構(gòu)體。char data;int nu
18、m;struct node *next;int Searchexpression(char string1) /判斷非法表達(dá)式int i1,b1,b2;int m;m=strlen(string1);if(string10<'0'|string10>'9')printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);for(i1=0;i1<=m;i1+)if(string1i1='(')b1+;elseif(string1i1=')')b2+;if(b1!=b2)print
19、f("ERROR:缺少括號(hào)n");return(WRONG);for(i1=0;i1<m;i1+)if('0'<=string1i1&&string1i1<='9'&&'0'<=string1i1+1&&string1i1+1<='9') printf("ERROR:表達(dá)式缺操作符!n");return(WRONG);for(i1=0;i1<=m;i1+)if(string1i1='+'&am
20、p;&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/') printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);elseif(string1i1='-'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/') printf(&q
21、uot;ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);elseif(string1i1='*'&&(string1i1+1='+'|string1i1+1='-'|string1i1+1='*'|string1i1+1='/')printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);elseif(string1i1='/'&&(string1i1+1='+'|string1i1+1
22、='-'|string1i1+1='*'|string1i1+1='/')printf("ERROR:表達(dá)式缺操作數(shù)!n");return(WRONG);return(RIGHT);struct node *Initialization()/初始化棧鏈,鏈棧不帶頭結(jié)點(diǎn)struct node *top;top=(struct node *)malloc(sizeof(struct node);top->data=''top->num=0;top->next=NULL;return top;str
23、uct 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=
24、a;p->next=top;top=p;break; case '*':case '/':string2j=' 'j+;if(top->data='*')|(top->data='/')string2j=top->data;j+; /比其高,現(xiàn)將棧頂運(yùn)算符出棧,再進(jìn)棧。top->data=a;break;elsep=(struct node *)malloc(sizeof(struct node);/否,直接進(jìn)棧p->data=a;p->next=top;top=p;bre
25、ak;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; c
26、ase ')':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-&
27、gt;next;free(p);string2j='#'printf("后綴表達(dá)式為:");for(i=0;i<j;i+)if(string2i!=' ')printf("%c ",string2i);printf("n ");return top;struct node *calcolate(struct node *s)/計(jì)算表達(dá)式的值struct node *top,*p;char *q;int x,y,a;int i,n;top=s;/指向棧頂?shù)闹羔榝or(i=0;i<=j;i+)/
28、遍歷字符串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='#') /遇#號(hào)結(jié)束標(biāo)志,輸出棧中的最后計(jì)算結(jié)果printf("計(jì)算結(jié)果為:%dn",top->num);elseif(string2i=' ')elsey=top->num;p=top;top=top->next
溫馨提示
- 1. 本站所有資源如無(wú)特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 《精密成形技術(shù)》教學(xué)大綱
- 軍糧工作課件
- 玉溪師范學(xué)院《現(xiàn)代教育技術(shù)應(yīng)用》2022-2023學(xué)年第一學(xué)期期末試卷
- 煙雨江南作品《永夜君王》經(jīng)典人生哲理語(yǔ)錄
- 玉溪師范學(xué)院《搶花炮》2023-2024學(xué)年第一學(xué)期期末試卷
- 教學(xué)課件動(dòng)態(tài)制作
- 2024屆河北省唐縣一中高三下開學(xué)檢測(cè)試題數(shù)學(xué)試題試卷
- 2024屆貴州省安順市高三數(shù)學(xué)試題第一次模擬考試試題
- 《朋友眼中的我》心理健康教學(xué)設(shè)計(jì)改
- 采購(gòu)欠款付款合同范本
- 大象版五年級(jí)科學(xué)上冊(cè)第五單元《小小機(jī)械師》全部課件(共5課時(shí))
- 《民航地面服務(wù)與管理》課程標(biāo)準(zhǔn)
- 陶瓷釉料配方600例
- Unit+5+Into+the+Unknown+Understanding+ideas+教學(xué)設(shè)計(jì) 高二下學(xué)期英語(yǔ)外研版(2019)選擇性必修第四冊(cè)
- 裝訂檔案封皮打印模板
- 血管外科手術(shù)介入治療基礎(chǔ)知識(shí)課件
- 構(gòu)建小區(qū)和諧重要性
- 23331-2020能源管理體系要求及使用指南
- “玩工”與“玩樂勞動(dòng)”:數(shù)字資本主義的游戲形式、同意制造與價(jià)值剝削
- ISO9001 2015版質(zhì)量管理體系標(biāo)準(zhǔn)
- UG軟件的高級(jí)仿真教程
評(píng)論
0/150
提交評(píng)論