JAVA HELP THANKS
Posted: Fri May 20, 2022 1:30 pm
JAVA HELP THANKS
Problems Description Based on the materials we discussed in class, you are required to implement the pseudo code for converting an infix expression into a postfix expression, then evaluating the postfix expression to produce a single result. You have to implement the following functionalities, 1) Your program reads an infix expression represented by a string S from the standard input (the keyboard). 2) Then your program converts the infix expression into a postfix expression P using the algorithm we learned in class. 3) Next, your program evaluates the postfix expression P to produce a single result R. 4) At last, your program displays the original infix expression S, the corresponding postfix expression P and the final result R on the standard output ( the screen). 5) Your program is required to handle at least five mathematic operations, +, -, * and/, and (exponential). When you perform division, please do integer division. For example, 7/2 is 3. 6) Note that in this project, the input infix expression contains one-digit operands and produces one-digit result. In other words, you do not worry about the infix expressions that involve multiple-digit operands and produce multiple-digit results. 7) Note that you have to implement your own Stack class in this homework. The built-in Java Stack is not allowed in this homework. Please use Java Object type or the generic type E for the data element in your stack implementation. 8) Please catch any potential errors, so that your program will not crash. You do not need to check whether all parentheses in the input infix expression are correctly matched or not. You can safely assume the format of the infix expression is correct. 9) Each run of your program will evaluate only one infix expression. Sample Run One Please enter the infix expression to process: (((1+2)-(3-4))/(6-5)) The postfix expression for the input infix is: 1 2 + 34 -- 65-/ The final result after evaluating the postfix is: 4 Sample Run Two Please enter the infix expression to process: 2 * 4-2^2^1 The postfix expression for the input infix is: 2 4 * 2 2 1^^. The final result after evaluating the postfix is: 4
Problems Description Based on the materials we discussed in class, you are required to implement the pseudo code for converting an infix expression into a postfix expression, then evaluating the postfix expression to produce a single result. You have to implement the following functionalities, 1) Your program reads an infix expression represented by a string S from the standard input (the keyboard). 2) Then your program converts the infix expression into a postfix expression P using the algorithm we learned in class. 3) Next, your program evaluates the postfix expression P to produce a single result R. 4) At last, your program displays the original infix expression S, the corresponding postfix expression P and the final result R on the standard output ( the screen). 5) Your program is required to handle at least five mathematic operations, +, -, * and/, and (exponential). When you perform division, please do integer division. For example, 7/2 is 3. 6) Note that in this project, the input infix expression contains one-digit operands and produces one-digit result. In other words, you do not worry about the infix expressions that involve multiple-digit operands and produce multiple-digit results. 7) Note that you have to implement your own Stack class in this homework. The built-in Java Stack is not allowed in this homework. Please use Java Object type or the generic type E for the data element in your stack implementation. 8) Please catch any potential errors, so that your program will not crash. You do not need to check whether all parentheses in the input infix expression are correctly matched or not. You can safely assume the format of the infix expression is correct. 9) Each run of your program will evaluate only one infix expression. Sample Run One Please enter the infix expression to process: (((1+2)-(3-4))/(6-5)) The postfix expression for the input infix is: 1 2 + 34 -- 65-/ The final result after evaluating the postfix is: 4 Sample Run Two Please enter the infix expression to process: 2 * 4-2^2^1 The postfix expression for the input infix is: 2 4 * 2 2 1^^. The final result after evaluating the postfix is: 4