我是靠谱客的博主 爱听歌红酒,最近开发中收集的这篇文章主要介绍Java 简单表达式计算,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

表达式解析器:

package com.darren.test.datastructure;

import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class AnalyzeExpression {
    private static final String REGEX = "([(|)|+|-|*|/])(\d*)";
    private String expression;
    private List<String> result;
    private java.util.Stack<String> notationStack;

    public AnalyzeExpression(String expression) {
        this.expression = expression.replaceAll(" ", "");
        this.result = new ArrayList<String>();
        this.notationStack = new java.util.Stack<String>();
    }

    /**
     * 把表达式转换成后缀表达式,然后按序号存入集合中
     * 
     * @return
     */
    public List<String> getResult() {
        Matcher matcher = Pattern.compile(REGEX).matcher(expression);
        // 使用正则表达式的分组功能可以直接将符号如数字分离
        while (matcher.find()) {
            if (matcher.group(1).length() > 0) {
                String operator = matcher.group(1);
                // 如果是符号,需要查看满足调教的符号才能加入到集合中
                this.addOperator(operator);
            }
            if (matcher.group(2).length() > 0) {
                String number = matcher.group(2);
                // 如果是数字,直接加入到集合中
                this.result.add(number);
            }
        }
        // 把栈中所有的运算符全部取出,放到结果集中
        while (!notationStack.empty()) {
            String topOperator = notationStack.pop();
            result.add(topOperator);
        }
        return this.result;
    }

    private void addOperator(String operator) {
        if ("+".equals(operator) || "-".equals(operator)) {
            // 若是加减号,和栈中的符号比较运算优先级, 自身优先级设为1
            this.comparePriority(operator, 1);
        } else if ("*".equals(operator) || "/".equals(operator)) {
            // 若是乘除号,和栈中的符号比较运算优先级, 自身优先级设为2
            this.comparePriority(operator, 2);
        } else if ("(".equals(operator)) {
            // 若是左括号,直接放入栈中
            this.notationStack.push(operator);
        } else if (")".equals(operator)) {
            // 若是有括号,则需要找到匹配的左括号
            this.matchLeftParen();
        } else {
            System.out.println("ERROR!");
        }
    }

    /**
     * 比较优先级
     * 
     * @param operator
     *            符号
     * @param priority
     *            优先级
     */
    private void comparePriority(String operator, int priority) {
        while (!notationStack.empty()) {
            String topOperator = notationStack.pop();
            if ("(".equals(topOperator)) {
                // 如果取出来的符号是左括号,那么重新放入栈中,因为只有有括号出现时,才能移除左括号
                notationStack.push(topOperator);
                break;
            } else {
                int newPriority = getPriority(topOperator);
                if (newPriority < priority) {
                    // 如果栈中的运算符的优先级低,那么就把低优先级的运算符重新放回栈中
                    notationStack.push(topOperator);
                    break;
                } else {
                    // 如果栈中的运算符的优先级高,那么就把高优先级的运算符放到结果集中
                    result.add(topOperator);
                }
            }
        }
        notationStack.push(operator);
    }

    private void matchLeftParen() {
        while (!notationStack.empty()) {
            String operator = notationStack.pop();
            if ("(".equals(operator)) {
                // 如果栈顶是左括号,则匹配成功,退出
                break;
            } else {
                // 如果栈顶不是左括号,重新放回栈中
                result.add(operator);
            }
        }
    }

    /**
     * 设定低优先级为1,高优先级为2
     * 
     * @param operator
     *            运算符
     * @return
     */
    private int getPriority(String operator) {
        int priority;
        if ("+".equals(operator) || "-".equals(operator)) {
            priority = 1;
        } else {
            priority = 2;
        }
        return priority;
    }
}

后缀表达式计算:

package com.darren.test.datastructure;

import java.util.List;

public class CalculateExpression {
    private static final String REGEX = "\d*";
    private java.util.Stack<String> numberStack;

    public CalculateExpression() {
        this.numberStack = new java.util.Stack<String>();
    }

    public double calculate(List<String> expressions) {
        double result = 0;
        for (String member : expressions) {
            if (member.matches(REGEX)) {
                // 如果是数字,放到栈中
                numberStack.push(member);
            } else {
                // 如果是运算符,从栈中取出两个数字,进行运算
                // 根据栈的特点,先取出来的数据是后(后-指的是在运算符之后)放进去的
                double num2 = Double.valueOf(numberStack.pop());
                // 根据栈的特点,后取出来的数据是先(先-指的是在运算符之前)放进去的
                double num1 = Double.valueOf(numberStack.pop());
                if ("+".equals(member)) {
                    result = num1 + num2;
                } else if ("-".equals(member)) {
                    result = num1 - num2;
                } else if ("*".equals(member)) {
                    result = num1 * num2;
                } else if ("/".equals(member)) {
                    result = num1 / num2;
                } else {
                    System.out.println("ERROR");
                }
                // 把运算结果放回栈中
                numberStack.push(String.valueOf(result));
            }
        }
        // 从栈中取出运算结果
        result = Double.valueOf(numberStack.pop());
        return result;
    }
}

测试:

package com.darren.test.datastructure;

import java.util.List;

public class AnalyzeExpressionTest {
    public static void main(String[] args) {
        String expression = "((1+2)*3+1)*4";
        AnalyzeExpression analyzeExpression = new AnalyzeExpression(expression);
        List<String> expressions = analyzeExpression.getResult();
        System.out.print("后缀表达式:");
        for (String member : expressions) {
            System.out.print(member + " ");
        }
        System.out.println();
        CalculateExpression calculateExpression = new CalculateExpression();
        double result = calculateExpression.calculate(expressions);
        System.out.println("结果为:" + result);
    }
}


最后

以上就是爱听歌红酒为你收集整理的Java 简单表达式计算的全部内容,希望文章能够帮你解决Java 简单表达式计算所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(71)

评论列表共有 0 条评论

立即
投稿
返回
顶部