我已经为Bodmas编写了此代码,但是在此过程中出现了一些错误。如果我执行3-5 + 9,将得到3.04.0。

尽管它适用于*,/和-等所有其他操作,但它只是开始串联。

public static String calculation(BODMASCalculation bodmas, String result) {
    while (bodmas.hasMatch()) {
        double value, leftOfOperator = bodmas.getLeft();
        char op = bodmas.getOperator();
        double rightOfOprator = bodmas.getRight();

        switch (op) {
        case '/':
            if(rightOfOprator == 0) //Divide by 0 generates Infinity
                value = 0;
            else
                value = leftOfOperator / rightOfOprator;
            break;
        case '*':
            value = leftOfOperator * rightOfOprator;
            break;
        case '+':
            value = leftOfOperator + rightOfOprator;
            break;
        case '-':
            value = leftOfOperator - rightOfOprator;
            break;
        default:
            throw new IllegalArgumentException("Unknown operator.");
        }
        result = result.substring(0, bodmas.getStart()) + value + result.substring(bodmas.getEnd());
        bodmas = new BODMASCalculation(result);
    }
    return result;
}


另一个功能是:

public boolean getMatchFor(String text, char operator) {
    String regex = "(-?[\\d\\.]+)(\\x)(-?[\\d\\.]+)";
    java.util.regex.Matcher matcher = java.util.regex.Pattern.compile(regex.replace('x', operator)).matcher(text);
    if (matcher.find()) {
        this.leftOfOperator = Double.parseDouble(matcher.group(1));
        this.op = matcher.group(2).charAt(0);
        this.rightOfOprator = Double.parseDouble(matcher.group(3));
        this.start = matcher.start();
        this.end = matcher.end();
        return true;
    }
    return false;
}


我有一个解决方案,方法是添加

String sss = null;
        if(op == '+' && !Str.isBlank(result.substring(0, bodmas.getStart())) && value >= 0)
            sss = "+";
        else
            sss = "";
        result = result.substring(0, bodmas.getStart()) + sss + value   + result.substring(bodmas.getEnd());


但是不想这样做,我希望它对所有运营商都有效。

最佳答案

import java.util.Stack;

public class EvaluateString
{
    public static int evaluate(String expression)
    {
        char[] tokens = expression.toCharArray();

         // Stack for numbers: 'values'
        Stack<Integer> values = new Stack<Integer>();

        // Stack for Operators: 'ops'
        Stack<Character> ops = new Stack<Character>();

        for (int i = 0; i < tokens.length; i++)
        {
             // Current token is a whitespace, skip it
            if (tokens[i] == ' ')
                continue;

            // Current token is a number, push it to stack for numbers
            if (tokens[i] >= '0' && tokens[i] <= '9')
            {
                StringBuffer sbuf = new StringBuffer();
                // There may be more than one digits in number
                while (i < tokens.length && tokens[i] >= '0' && tokens[i] <= '9')
                    sbuf.append(tokens[i++]);
                values.push(Integer.parseInt(sbuf.toString()));
            }

            // Current token is an opening brace, push it to 'ops'
            else if (tokens[i] == '(')
                ops.push(tokens[i]);

            // Closing brace encountered, solve entire brace
            else if (tokens[i] == ')')
            {
                while (ops.peek() != '(')
                  values.push(applyOp(ops.pop(), values.pop(), values.pop()));
                ops.pop();
            }

            // Current token is an operator.
            else if (tokens[i] == '+' || tokens[i] == '-' ||
                     tokens[i] == '*' || tokens[i] == '/')
            {
                // While top of 'ops' has same or greater precedence to current
                // token, which is an operator. Apply operator on top of 'ops'
                // to top two elements in values stack
                while (!ops.empty() && hasPrecedence(tokens[i], ops.peek()))
                  values.push(applyOp(ops.pop(), values.pop(), values.pop()));

                // Push current token to 'ops'.
                ops.push(tokens[i]);
            }
        }

        // Entire expression has been parsed at this point, apply remaining
        // ops to remaining values
        while (!ops.empty())
            values.push(applyOp(ops.pop(), values.pop(), values.pop()));

        // Top of 'values' contains result, return it
        return values.pop();
    }

    // Returns true if 'op2' has higher or same precedence as 'op1',
    // otherwise returns false.
    public static boolean hasPrecedence(char op1, char op2)
    {
        if (op2 == '(' || op2 == ')')
            return false;
        if ((op1 == '*' || op1 == '/') && (op2 == '+' || op2 == '-'))
            return false;
        else
            return true;
    }

    // A utility method to apply an operator 'op' on operands 'a'
    // and 'b'. Return the result.
    public static int applyOp(char op, int b, int a)
    {
        switch (op)
        {
        case '+':
            return a + b;
        case '-':
            return a - b;
        case '*':
            return a * b;
        case '/':
            if (b == 0)
                throw new
                UnsupportedOperationException("Cannot divide by zero");
            return a / b;
        }
        return 0;
    }

    // Driver method to test above methods
    public static void main(String[] args)
    {
        System.out.println(EvaluateString.evaluate("10 + 2 * 6"));
        System.out.println(EvaluateString.evaluate("100 * 2 + 12"));
        System.out.println(EvaluateString.evaluate("100 * ( 2 + 12 )"));
        System.out.println(EvaluateString.evaluate("100 * ( 2 + 12 ) / 14"));
    }
}

08-04 14:08