南陽 oj 表示式求值 題目35 資料結構 NYO題目連結
阿新 • • 發佈:2019-02-05
建議不會的看別人的程式碼自己在之上模擬一遍,只要耐心模擬就會做出來
題目連結:http://acm.nyist.net/JudgeOnline/problem.php?pid=35
#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 1000 using namespace std; char s[N];//儲存字串 char str1[N];//儲存'o'-到'9'的字元 char str2[N];//儲存運算子 int top1,top2;//利用陣列模擬棧 int compare(char x)//優先順序比較 { switch(x) { case '+' : case '-' :return 1; case '*' : case '/' :return 2; case '(' :return 0; default: return -1; } } void zhuan()//轉換 { int k; top1=-1,top2=-1;//初始化頭 scanf("%s",s); k=strlen(s); for(int i=0;i<k;i++) { if(s[i]>='0'&&s[i]<='9'||s[i]=='.')//如果是數字進去str1陣列中 { top1++; str1[top1]=s[i]; } else if(s[i]=='(')//如果是'('進入str2中 { top2++; str2[top2]=s[i]; } else if(s[i]==')')//如果是')'說明str2中有運算子 { while(str2[top2]!='(') { top1++; str1[top1]=' '; top1++; str1[top1]=str2[top2]; top2--; } top2--;//把'('出去 } else if(s[i]=='+'||s[i]=='-'||s[i]=='*'||s[i]=='/')//如果是運算子比較優先順序 { top1++; str1[top1]=' '; while(compare(s[i])<=compare(str2[top2]))//如果s[i]優先順序低於之前也就是str2中的運算子 把str2中的運算子給str1 { top1++; str1[top1]=str2[top2]; top1++; str1[top1]=' '; top2--; } top2++; str2[top2]=s[i];//如果str2高進入str2 } } while(top2!=-1)//將剩餘的進入str1中 { top1++; str1[top1]=' '; top1++; str1[top1]=str2[top2]; top2--; } top1++; str1[top1]=' '; top1++; str1[top1]='='; top1++; str1[top1]='\0'; } void sum()//計算 { double a1,a2,d[N]; char ch; char s1[100],st[N]; int k,t=-1; for(int i=0;i<top1;i++) { k=0; ch=str1[i]; while(str1[i]!=' ') { if(str1[i]=='=') break; s1[k++]=str1[i]; i++; } if(ch>='0'&&ch<='9') { s1[k]='\0'; t++; d[t]=atof(s1); } else { switch(ch) { case '+' : a2=d[t]; t--; a1=d[t]; t--; t++; d[t]=a1+a2; break; case '-' : a2=d[t]; t--; a1=d[t]; t--; t++; d[t]=a1-a2; break; case '*' : a2=d[t]; t--; a1=d[t]; t--; t++; d[t]=a1*a2; break; case '/' : a2=d[t]; t--; a1=d[t]; t--; t++; d[t]=a1/a2; break; default : break; } } } printf("%.2lf\n",d[t]); } main() { int n; scanf("%d",&n); while(n--) { zhuan(); sum(); } }