さて、私は中置式を後置式に変換するこのコードを持っています。できます!「2+*5」や「wordswordswords」などのエラーを処理できるようにしたい場合を除きます。どうすればいいですか?ありがとう!
package InToPostfix;
import java.io.IOException;
import javax.script.*;
/** Translates an infix expression to a postfix expression.
*
* @author Becky Hogan
*
*/
public class InToPost {
private Stack theStack;
private String input;
private String output = "";
public static void main(String[] args) throws Exception {
String input = "";
String output;
Object evaluated;
InToPost theTrans = new InToPost(input);
output = theTrans.evalOp();
InToPost result= new InToPost(input);
evaluated= result.evaluate(input);
System.out.println("Prefix is " + input + '\n');
System.out.println("Postfix is " + output + '\n');
System.out.println("The value:");
System.out.println(evaluated);
}
/** InToPost Method initiates the stack
*
* @param in the expression string
*/
public InToPost(String in) {
input = in;
int stackSize = input.length();
theStack = new Stack(stackSize);
}
/** evaluate Method evaluates the mathematical expression
*
* @param aString the expression string
* @return an object obj, the answer
* @throws Exception
*/
public Object evaluate(String aString) throws Exception {
// create a script engine manager
ScriptEngineManager factory = new ScriptEngineManager();
// create a JavaScript engine
ScriptEngine engine = factory.getEngineByName("JavaScript");
// evaluate JavaScript code from String
Object obj = engine.eval(aString);
return(obj);
}
/** evalOp Method decides what to do with the indexed character depending on if it is an operand or operator
*
* @return the postfix
* @throws Exception
*/
public String evalOp() throws Exception {
for (int j = 0; j < input.length(); j++) {
char ch = input.charAt(j);
switch (ch) {
case '+':
case '-':
processOperator(ch, 1);
break; // (precedence 1)
case '*': // it's * or /
case '/':
processOperator(ch, 2); // go pop operators
break; // (precedence 2)
case '(': // it's a left paren
theStack.push(ch); // push it
break;
case ')': // it's a right paren
gotParen(ch); // go pop operators
break;
default: // must be an operand
if(!Character.isJavaIdentifierPart(ch) && !Character.isDigit(ch)){
throw new Exception
("Unexpected Character Encountered");
}
output = output + ch; // write it to output
break;
}
}
while (!theStack.isEmpty()) {
output = output + theStack.pop();
}
return output; // return postfix
}
/** Method to determine the precedence of operators.
*
* @param opThis the character in the string
* @param prec1 precedence of previous operator
*/
public void processOperator(char opThis, int prec1) {
while (!theStack.isEmpty()) {
char opTop = theStack.pop();
if (opTop == '(') {
theStack.push(opTop);
break;
}// it's an operator
else {// precedence of new op
int prec2;
if (opTop == '+' || opTop == '-')
prec2 = 1;
else
prec2 = 2;
if (prec2 < prec1) // if prec of new op less
{ // than prec of old
theStack.push(opTop); // save newly-popped op
break;
} else
// prec of new not less
output = output + opTop; // than prec of old
}
}
theStack.push(opThis);
}
/** gotParen Method gets the previous operator
*
* @param ch the character in the string
*/
public void gotParen(char ch){
while (!theStack.isEmpty()) {
char chx = theStack.pop();
if (chx == '(')
break;
else
output = output + chx;
}
}
/**Stack class holds attributes for the stack needed for this assignment
*
* @author Becky Hogan
*
*/
class Stack {
private int maxSize;
private char[] stackArray;
private int top;
public Stack(int max) {
maxSize = max;
stackArray = new char[maxSize];
top = -1;
}
public void push(char j) {
stackArray[++top] = j;
}
public char pop() {
return stackArray[top--];
}
public char peek() {
return stackArray[top];
}
public boolean isEmpty() {
return (top == -1);
}
}
}