数学表达式解析汇报前缀中缀后缀.doc
word前缀、中缀、后缀表达式它们都是对表达式的记法,因此也被称为前缀记法、中缀记法和后缀记法。它们之间的区别在于运算符相对与操作数的位置不同:前缀表达式的运算符位于与其相关的操作数之前;中缀和后缀同理。举例:(3 + 4) × 5 - 6 就是中缀表达式- × + 3 4 5 6前缀表达式3 4 + 5 × 6 -后缀表达式中缀表达式中缀记法中缀表达式是一种通用的算术或逻辑公式表示方法,操作符以中缀形式处于操作数的中间。中缀表达式是人们常用的算术表示方法。虽然人的大脑很容易理解与分析中缀表达式,但对计算机来说中缀表达式却是很复杂的,因此计算表达式的值时,通常需要先将中缀表达式转换为前缀或后缀表达式,然后再进展求值。对计算机来说,计算前缀或后缀表达式的值非常简单。前缀表达式前缀记法、波兰式前缀表达式的运算符位于操作数之前。前缀表达式的计算机求值:从右至左扫描表达式,遇到数字时,将数字压入堆栈,遇到运算符时,弹出栈顶的两个数,用运算符对它们做相应的计算栈顶元素 op 次顶元素,并将结果入栈;重复上述过程直到表达式最左端,最后运算得出的值即为表达式的结果。例如前缀表达式“- × + 3 4 5 6:(1) 从右至左扫描,将6、5、4、3压入堆栈;(2) 遇到+运算符,因此弹出3和43为栈顶元素,4为次顶元素,注意与后缀表达式做比拟,计算出3+4的值,得7,再将7入栈;(3) 接下来是×运算符,因此弹出7和5,计算出7×5=35,将35入栈;(4) 最后是-运算符,计算出35-6的值,即29,由此得出最终结果。可以看出,用计算机计算前缀表达式的值是很容易的。将中缀表达式转换为前缀表达式:遵循以下步骤:(1) 初始化两个栈:运算符栈S1和储存中间结果的栈S2;(2) 从右至左扫描中缀表达式;(3) 遇到操作数时,将其压入S2;(4) 遇到运算符时,比拟其与S1栈顶运算符的优先级:(4-1) 如果S1为空,或栈顶运算符为右括号“),如此直接将此运算符入栈;(4-2) 否如此,假如优先级比栈顶运算符的较高或相等,也将运算符压入S1;(4-3) 否如此,将S1栈顶的运算符弹出并压入到S2中,再次转到(4-1)与S1中新的栈顶运算符相比拟;(5) 遇到括号时:(5-1) 如果是右括号“),如此直接压入S1;(5-2) 如果是左括号“(,如此依次弹出S1栈顶的运算符,并压入S2,直到遇到右括号为止,此时将这一对括号丢弃;(6) 重复步骤(2)至(5),直到表达式的最左边;(7) 将S1中剩余的运算符依次弹出并压入S2;(8) 依次弹出S2中的元素并输出,结果即为中缀表达式对应的前缀表达式。例如,将中缀表达式“1+(2+3)×4)-5转换为前缀表达式的过程如下:扫描到的元素S2(栈底->栈顶)S1 (栈底->栈顶)说明55空数字,直接入栈-5-S1为空,运算符直接入栈)5- )右括号直接入栈45 4- )数字直接入栈×5 4- ) ×S1栈顶是右括号,直接入栈)5 4- ) × )右括号直接入栈35 4 3- ) × )数字+5 4 3- ) × ) +S1栈顶是右括号,直接入栈25 4 3 2- ) × ) +数字(5 4 3 2 +- ) ×左括号,弹出运算符直至遇到右括号(5 4 3 2 + ×-同上+5 4 3 2 + ×- +优先级与-一样,入栈15 4 3 2 + × 1- +数字到达最左端5 4 3 2 + × 1 + -空S1中剩余的运算符因此结果为“- + 1 × + 2 3 4 5。后缀表达式后缀记法、逆波兰式后缀表达式与前缀表达式类似,只是运算符位于操作数之后。后缀表达式的计算机求值:与前缀表达式类似,只是顺序是从左至右:从左至右扫描表达式,遇到数字时,将数字压入堆栈,遇到运算符时,弹出栈顶的两个数,用运算符对它们做相应的计算次顶元素 op栈顶元素,并将结果入栈;重复上述过程直到表达式最右端,最后运算得出的值即为表达式的结果。例如后缀表达式“3 4 + 5 × 6 -:(1) 从左至右扫描,将3和4压入堆栈;(2) 遇到+运算符,因此弹出4和34为栈顶元素,3为次顶元素,注意与前缀表达式做比拟,计算出3+4的值,得7,再将7入栈;(3) 将5入栈;(4)接下来是×运算符,因此弹出5和7,计算出7×5=35,将35入栈;(5) 将6入栈;(6) 最后是-运算符,计算出35-6的值,即29,由此得出最终结果。将中缀表达式转换为后缀表达式:与转换为前缀表达式相似,遵循以下步骤:(1) 初始化两个栈:运算符栈S1和储存中间结果的栈S2;(2) 从左至右扫描中缀表达式;(3) 遇到操作数时,将其压入S2;(4) 遇到运算符时,比拟其与S1栈顶运算符的优先级:(4-1) 如果S1为空,或栈顶运算符为左括号“(,如此直接将此运算符入栈;(4-2) 否如此,假如优先级比栈顶运算符的高,也将运算符压入S1注意转换为前缀表达式时是优先级较高或一样,而这里如此不包括一样的情况;(4-3) 否如此,将S1栈顶的运算符弹出并压入到S2中,再次转到(4-1)与S1中新的栈顶运算符相比拟;(5) 遇到括号时:(5-1) 如果是左括号“(,如此直接压入S1;(5-2) 如果是右括号“),如此依次弹出S1栈顶的运算符,并压入S2,直到遇到左括号为止,此时将这一对括号丢弃;(6) 重复步骤(2)至(5),直到表达式的最右边;(7) 将S1中剩余的运算符依次弹出并压入S2;(8) 依次弹出S2中的元素并输出,结果的逆序即为中缀表达式对应的后缀表达式转换为前缀表达式时不用逆序。例如,将中缀表达式“1+(2+3)×4)-5转换为后缀表达式的过程如下:扫描到的元素S2(栈底->栈顶)S1 (栈底->栈顶)说明11空数字,直接入栈+1+S1为空,运算符直接入栈(1+ (左括号,直接入栈(1+ ( (同上21 2+ ( (数字+1 2+ ( ( +S1栈顶为左括号,运算符直接入栈31 2 3+ ( ( +数字)1 2 3 + (右括号,弹出运算符直至遇到左括号×1 2 3 + ( ×S1栈顶为左括号,运算符直接入栈41 2 3 + 4+ ( ×数字)1 2 3 + 4 ×+右括号,弹出运算符直至遇到左括号-1 2 3 + 4 × +-与+优先级一样,因此弹出+,再压入-51 2 3 + 4 × + 5-数字到达最右端1 2 3 + 4 × + 5 -空S1中剩余的运算符因此结果为“1 2 3 + 4 × + 5 -注意需要逆序输出。编写Java程序将一个中缀表达式转换为前缀表达式和后缀表达式,并计算表达式的值。其中的toPolishNotation()方法将中缀表达式转换为前缀表达式波兰式、toReversePolishNotation()方法如此用于将中缀表达式转换为后缀表达式逆波兰式:注:(1) 程序很长且注释比拟少,但如果将上面的理论内容弄懂之后再将程序编译并运行起来,还是比拟容易理解的。有耐心的话可以研究一下。(2) 此程序是笔者为了说明上述概念而编写,仅做了简单的测试,不保证其中没有Bug,因此不要将其用于除研究之外的其他场合。javaview plaincopy1. packageqmk.simple_test;2. importjava.util.Scanner;3. importjava.util.Stack;4. /*5. *Exampleofconvertinganinfix-expressionto6. *PolishNotation(PN)orReversePolishNotation(RPN).7. *Writtenin2011-8-258. *authorQiaoMingkui9. */10. publicclassCalculator11. publicstaticfinalStringUSAGE="=usage=n"12. +"inputtheexpressions,andthentheprogram"13. +"willcalculatethemandshowtheresult.n"14. +"input'bye'toexit.n"15. /*16. *paramargs17. */18. publicstaticvoidmain(Stringargs)19. System.out.println(USAGE);20. Scannerscanner=newScanner(System.in);21. Stringinput=""22. finalStringCLOSE_MARK="bye"23. System.out.println("inputanexpression:");24. input=scanner.nextLine();25. while(input.length()!=026. &&!CLOSE_MARK.equals(input)27. System.out.print("PolishNotation(PN):");28. try29. toPolishNotation(input);30. catch(NumberFormatExceptione)31. System.out.println("ninputerror,notanumber.");32. catch(IllegalArgumentExceptione)33. System.out.println("ninputerror:"+e.getMessage();34. catch(Exceptione)35. System.out.println("ninputerror,invalidexpression.");36. 37. System.out.print("ReversePolishNotation(RPN):");38. try39. toReversePolishNotation(input);40. catch(NumberFormatExceptione)41. System.out.println("ninputerror,notanumber.");42. catch(IllegalArgumentExceptione)43. System.out.println("ninputerror:"+e.getMessage();44. catch(Exceptione)45. System.out.println("ninputerror,invalidexpression.");46. 47. System.out.println("inputanewexpression:");48. input=scanner.nextLine();49. 50. System.out.println("programexits");51. 52. /*53. *parsetheexpression,andcalculateit.54. *paraminput55. *throwsIllegalArgumentException56. *throwsNumberFormatException57. */58. privatestaticvoidtoPolishNotation(Stringinput)59. throwsIllegalArgumentException,NumberFormatException60. intlen=input.length();61. charc,tempChar;62. Stack<Character>s1=newStack<Character>();63. Stack<Double>s2=newStack<Double>();64. Stack<Object>expression=newStack<Object>();65. doublenumber;66. intlastIndex=-1;67. for(inti=len-1;i>=0;-i)68. c=input.charAt(i);69. if(Character.isDigit(c)70. lastIndex=readDoubleReverse(input,i);71. number=Double.parseDouble(input.substring(lastIndex,i+1);72. s2.push(number);73. i=lastIndex;74. if(int)number=number)75. expression.push(int)number);76. else77. expression.push(number);78. elseif(isOperator(c)79. while(!s1.isEmpty()80. &&s1.peek()!=')'81. &&prioritypare(c,s1.peek()<0)82. expression.push(s1.peek();83. s2.push(calc(s2.pop(),s2.pop(),s1.pop();84. 85. s1.push(c);86. elseif(c=')')87. s1.push(c);88. elseif(c='(')89. while(tempChar=s1.pop()!=')')90. expression.push(tempChar);91. s2.push(calc(s2.pop(),s2.pop(),tempChar);92. if(s1.isEmpty()93. thrownewIllegalArgumentException(94. "bracketdosen'tmatch,missingrightbracket')'.");95. 96. 97. elseif(c='')98. /ignore99. else100. thrownewIllegalArgumentException(101. "wrongcharacter'"+c+"'");102. 103. 104. while(!s1.isEmpty()105. tempChar=s1.pop();106. expression.push(tempChar);107. s2.push(calc(s2.pop(),s2.pop(),tempChar);108. 109. while(!expression.isEmpty()110. System.out.print(expression.pop()+"");111. 112. doubleresult=s2.pop();113. if(!s2.isEmpty()114. thrownewIllegalArgumentException("inputisawrongexpression.");115. System.out.println();116. if(int)result=result)117. System.out.println("theresultis"+(int)result);118. else119. System.out.println("theresultis"+result);120. 121. /*122. *parsetheexpression,andcalculateit.123. *paraminput124. *throwsIllegalArgumentException125. *throwsNumberFormatException126. */127. privatestaticvoidtoReversePolishNotation(Stringinput)128. throwsIllegalArgumentException,NumberFormatException129. intlen=input.length();130. charc,tempChar;131. Stack<Character>s1=newStack<Character>();132. Stack<Double>s2=newStack<Double>();133. doublenumber;134. intlastIndex=-1;135. for(inti=0;i<len;+i)136. c=input.charAt(i);137. if(Character.isDigit(c)|c='.')138. lastIndex=readDouble(input,i);139. number=Double.parseDouble(input.substring(i,lastIndex);140. s2.push(number);141. i=lastIndex-1;142. if(int)number=number)143. System.out.print(int)number+"");144. else145. System.out.print(number+"");146. elseif(isOperator(c)147. while(!s1.isEmpty()148. &&s1.peek()!='('149. &&prioritypare(c,s1.peek()<=0)150. System.out.print(s1.peek()+"");151. doublenum1=s2.pop();152. doublenum2=s2.pop();153. s2.push(calc(num2,num1,s1.pop();154. 155. s1.push(c);156. elseif(c='(')157. s1.push(c);158. elseif(c=')')159. while(tempChar=s1.pop()!='(')160. System.out.print(tempChar+"");161. doublenum1=s2.pop();162. doublenum2=s2.pop();163. s2.push(calc(num2,num1,tempChar);164. if(s1.isEmpty()165. thrownewIllegalArgumentException(166. "bracketdosen'tmatch,missingleftbracket'('.");167. 168. 169. elseif(c='')170. /ignore171. else172. thrownewIllegalArgumentException(173. "wrongcharacter'"+c+"'");174. 175. 176. while(!s1.isEmpty()177. tempChar=s1.pop();178. System.out.print(tempChar+"");179. doublenum1=s2.pop();180. doublenum2=s2.pop();181. s2.push(calc(num2,num1,tempChar);182. 183. doubleresult=s2.pop();184. if(!s2.isEmpty()185. thrownewIllegalArgumentException("inputisawrongexpression.");186. System.out.println();187. if(int)result=result)188. System.out.println("theresultis"+(int)result);189. else190. System.out.println("theresultis"+result);191. 192. /*193. *calculatethetwonumberwiththeoperation.194. *paramnum1195. *paramnum2196. *paramop197. *return198. *throwsIllegalArgumentException199. */200. privatestaticdoublecalc(doublenum1,doublenum2,charop)201. throwsIllegalArgumentException202. switch(op)203. case'+':204. returnnum1+num2;205. case'-':206. returnnum1-num2;207. case'*':208. returnnum1*num2;209. case'/':210. if(num2=0)thrownewIllegalArgumentException("divisorcan'tbe0.");211. returnnum1/num2;212. default:213. return0;/willnevercatchuphere214. 215. 216. /*217. *parethetwooperations'priority.218. *paramc219. *parampeek220. *return221. */222. privatestaticintprioritypare(charop1,charop2)223. switch(op1)224. case'+':case'-':225. return(op2='*'|op2='/'?-1:0);226. case'*':case'/':227. return(op2='+'|op2='-'?1:0);228. 229. return1;230. 231. /*232. *readthenextnumber(reverse)233. *paraminput234. *paramstart235. *return236. *throwsIllegalArgumentException237. */238. privatestaticintreadDoubleReverse(Stringinput,intstart)239. throwsIllegalArgumentException240. intdotIndex=-1;241. charc;242. for(inti=start;i>=0;-i)243. c=input.charAt(i);244. if(c='.')245. if(dotIndex!=-1)246. thrownewIllegalArgumentException(247. "therehavemorethan1dotsinthenumber.");248. else249. dotIndex=i;250. elseif(!Character.isDigit(c)251. returni+1;252. elseif(i=0)253. return0;254. 255. 256. thrownewIllegalArgumentException("notanumber.");257. 258.259. /*260. *readthenextnumber261. *paraminput262. *paramstart263. *return264. *throwsIllegalArgumentException265. */266. privatestaticintreadDouble(Stringinput,intstart)267. throwsIllegalArgumentException268. intlen=input.length();269. intdotIndex=-1;270. charc;271. for(inti=start;i<len;+i)272. c=input.charAt(i);273. if(c='.')274. if(dotIndex!=-1)275. thrownewIllegalArgumentException(276. "therehavemorethan1dotsinthenumber.");277. elseif(i=len-1)278. thrownewIllegalArgumentException(279. "notanumber,dotcan'tbethelastpartofanumber.");280. else281. dotIndex=i;282. elseif(!Character.isDigit(c)283. if(dotIndex=-1|i-dotIndex>1)284. returni;285. else286. thrownewIllegalArgumentException(287. "notanumber,dotcan'tbethelastpartofanumber.");288. elseif(i=len-1)289. returnlen;290. 291. 292.293. thrownewIllegalArgumentException("notanumber.");294. 295. /*296. *returntrueifthecharacterisanoperator.297. *paramc298. *return299. */300. privatestaticbooleanisOperator(charc)301. return(c='+'|c='-'|c='*'|c='/');302. 303. 下面是程序运行结果绿色为用户输入:= usage =input the expressions, and then the program will calculate them and show the result.input 'bye' to exit.input an expression:Reverse Polish Notation (RPN):3.8 5.3 +input a new expression:5*(9.1+3.2)/(1-5+4.88)Reverse Polish Notation (RPN):5 9.1 3.2 + * 1 5 - 4.88 + /input a new expression:1+(2+3)*4)-5Polish Notation (PN):- + 1 * + 2 3 4 5the result is 16Reverse Polish Notation (RPN):1 2 3 + 4 * + 5 -the result is 16input a new expression:byeprogram exits15 / 15