Java计算数学表达式代码详解
程序员文章站
2023-12-04 11:54:10
java字符串转换成算术表达式计算并输出结果,通过这个工具可以直接对字符串形式的算术表达式进行运算,并且使用非常简单。
这个工具中包含两个类 calculator 和 a...
java字符串转换成算术表达式计算并输出结果,通过这个工具可以直接对字符串形式的算术表达式进行运算,并且使用非常简单。
这个工具中包含两个类 calculator 和 arithhelper
calculator 代码如下:
import java.util.collections; import java.util.stack; /** * 算数表达式求值 * 直接调用calculator的类方法conversion() * 传入算数表达式,将返回一个浮点值结果 * 如果计算过程错误,将返回一个nan */ public class calculator { private stack<string> postfixstack = new stack<string>(); // 后缀式栈 private stack<character> opstack = new stack<character>(); // 运算符栈 private int[] operatpriority = new int[] { 0, 3, 2, 1, -1, 1, 0, 2 }; // 运用运算符ascii码-40做索引的运算符优先级 public static double conversion(string expression) { double result = 0; calculator cal = new calculator(); try { expression = transform(expression); result = cal.calculate(expression); } catch (exception e) { // e.printstacktrace(); // 运算错误返回nan return 0.0 / 0.0; } // return new string().valueof(result); return result; } /** * 将表达式中负数的符号更改 * * @param expression * 例如-2+-1*(-3e-2)-(-1) 被转为 ~2+~1*(~3e~2)-(~1) * @return */ private static string transform(string expression) { char[] arr = expression.tochararray(); for (int i = 0; i < arr.length; i++) { if (arr[i] == '-') { if (i == 0) { arr[i] = '~'; } else { char c = arr[i - 1]; if (c == '+' || c == '-' || c == '*' || c == '/' || c == '(' || c == 'e' || c == 'e') { arr[i] = '~'; } } } } if(arr[0]=='~'||arr[1]=='('){ arr[0]='-'; return "0"+new string(arr); } else{ return new string(arr); } } /** * 按照给定的表达式计算 * * @param expression * 要计算的表达式例如:5+12*(3+5)/7 * @return */ public double calculate(string expression) { stack<string> resultstack = new stack<string>(); prepare(expression); collections.reverse(postfixstack); // 将后缀式栈反转 string firstvalue, secondvalue, currentvalue; // 参与计算的第一个值,第二个值和算术运算符 while (!postfixstack.isempty()) { currentvalue = postfixstack.pop(); if (!isoperator(currentvalue.charat(0))) { // 如果不是运算符则存入操作数栈中 currentvalue = currentvalue.replace("~", "-"); resultstack.push(currentvalue); } else { // 如果是运算符则从操作数栈中取两个值和该数值一起参与运算 secondvalue = resultstack.pop(); firstvalue = resultstack.pop(); // 将负数标记符改为负号 firstvalue = firstvalue.replace("~", "-"); secondvalue = secondvalue.replace("~", "-"); string tempresult = calculate(firstvalue, secondvalue, currentvalue.charat(0)); resultstack.push(tempresult); } } return double.valueof(resultstack.pop()); } /** * 数据准备阶段将表达式转换成为后缀式栈 * * @param expression */ private void prepare(string expression) { opstack.push(','); // 运算符放入栈底元素逗号,此符号优先级最低 char[] arr = expression.tochararray(); int currentindex = 0; // 当前字符的位置 int count = 0; // 上次算术运算符到本次算术运算符的字符的长度便于或者之间的数值 char currentop, peekop; // 当前操作符和栈顶操作符 for (int i = 0; i < arr.length; i++) { currentop = arr[i]; if (isoperator(currentop)) { // 如果当前字符是运算符 if (count > 0) { postfixstack.push(new string(arr, currentindex, count)); // 取两个运算符之间的数字 } peekop = opstack.peek(); if (currentop == ')') { // 遇到反括号则将运算符栈中的元素移除到后缀式栈中直到遇到左括号 while (opstack.peek() != '(') { postfixstack.push(string.valueof(opstack.pop())); } opstack.pop(); } else { while (currentop != '(' && peekop != ',' && compare(currentop, peekop)) { postfixstack.push(string.valueof(opstack.pop())); peekop = opstack.peek(); } opstack.push(currentop); } count = 0; currentindex = i + 1; } else { count++; } } if (count > 1 || (count == 1 && !isoperator(arr[currentindex]))) { // 最后一个字符不是括号或者其他运算符的则加入后缀式栈中 postfixstack.push(new string(arr, currentindex, count)); } while (opstack.peek() != ',') { postfixstack.push(string.valueof(opstack.pop())); // 将操作符栈中的剩余的元素添加到后缀式栈中 } } /** * 判断是否为算术符号 * * @param c * @return */ private boolean isoperator(char c) { return c == '+' || c == '-' || c == '*' || c == '/' || c == '(' || c == ')'; } /** * 利用ascii码-40做下标去算术符号优先级 * * @param cur * @param peek * @return */ public boolean compare(char cur, char peek) { // 如果是peek优先级高于cur,返回true,默认都是peek优先级要低 boolean result = false; if (operatpriority[(peek) - 40] >= operatpriority[(cur) - 40]) { result = true; } return result; } /** * 按照给定的算术运算符做计算 * * @param firstvalue * @param secondvalue * @param currentop * @return */ private string calculate(string firstvalue, string secondvalue, char currentop) { string result = ""; switch (currentop) { case '+': result = string.valueof(arithhelper.add(firstvalue, secondvalue)); break; case '-': result = string.valueof(arithhelper.sub(firstvalue, secondvalue)); break; case '*': result = string.valueof(arithhelper.mul(firstvalue, secondvalue)); break; case '/': result = string.valueof(arithhelper.div(firstvalue, secondvalue)); break; } return result; } }
arithhelper 代码如下:
public class arithhelper { // 默认除法运算精度 private static final int def_div_scale = 16; // 这个类不能实例化 private arithhelper() { } /** * 提供精确的加法运算。 * * @param v1 被加数 * @param v2 加数 * @return 两个参数的和 */ public static double add(double v1, double v2) { java.math.bigdecimal b1 = new java.math.bigdecimal(double.tostring(v1)); java.math.bigdecimal b2 = new java.math.bigdecimal(double.tostring(v2)); return b1.add(b2).doublevalue(); } public static double add(string v1, string v2) { java.math.bigdecimal b1 = new java.math.bigdecimal(v1); java.math.bigdecimal b2 = new java.math.bigdecimal(v2); return b1.add(b2).doublevalue(); } /** * 提供精确的减法运算。 * * @param v1 被减数 * @param v2 减数 * @return 两个参数的差 */ public static double sub(double v1, double v2) { java.math.bigdecimal b1 = new java.math.bigdecimal(double.tostring(v1)); java.math.bigdecimal b2 = new java.math.bigdecimal(double.tostring(v2)); return b1.subtract(b2).doublevalue(); } public static double sub(string v1, string v2) { java.math.bigdecimal b1 = new java.math.bigdecimal(v1); java.math.bigdecimal b2 = new java.math.bigdecimal(v2); return b1.subtract(b2).doublevalue(); } /** * 提供精确的乘法运算。 * * @param v1 * 被乘数 * @param v2 * 乘数 * @return 两个参数的积 */ public static double mul(double v1, double v2) { java.math.bigdecimal b1 = new java.math.bigdecimal(double.tostring(v1)); java.math.bigdecimal b2 = new java.math.bigdecimal(double.tostring(v2)); return b1.multiply(b2).doublevalue(); } public static double mul(string v1, string v2) { java.math.bigdecimal b1 = new java.math.bigdecimal(v1); java.math.bigdecimal b2 = new java.math.bigdecimal(v2); return b1.multiply(b2).doublevalue(); } /** * 提供(相对)精确的除法运算,当发生除不尽的情况时,精确到 小数点以后10位,以后的数字四舍五入。 * * @param v1 * 被除数 * @param v2 * 除数 * @return 两个参数的商 */ public static double div(double v1, double v2) { return div(v1, v2, def_div_scale); } public static double div(string v1, string v2) { java.math.bigdecimal b1 = new java.math.bigdecimal(v1); java.math.bigdecimal b2 = new java.math.bigdecimal(v2); return b1.divide(b2, def_div_scale, java.math.bigdecimal.round_half_up).doublevalue(); } /** * 提供(相对)精确的除法运算。当发生除不尽的情况时,由scale参数指 定精度,以后的数字四舍五入。 * * @param v1 被除数 * @param v2 除数 * @param scale 表示表示需要精确到小数点以后几位。 * @return 两个参数的商 */ public static double div(double v1, double v2, int scale) { if (scale < 0) { throw new illegalargumentexception("the scale must be a positive integer or zero"); } java.math.bigdecimal b1 = new java.math.bigdecimal(double.tostring(v1)); java.math.bigdecimal b2 = new java.math.bigdecimal(double.tostring(v2)); return b1.divide(b2, scale, java.math.bigdecimal.round_half_up).doublevalue(); } /** * 提供精确的小数位四舍五入处理。 * * @param v 需要四舍五入的数字 * @param scale 小数点后保留几位 * @return 四舍五入后的结果 */ public static double round(double v, int scale) { if (scale < 0) { throw new illegalargumentexception("the scale must be a positive integer or zero"); } java.math.bigdecimal b = new java.math.bigdecimal(double.tostring(v)); java.math.bigdecimal one = new java.math.bigdecimal("1"); return b.divide(one, scale, java.math.bigdecimal.round_half_up).doublevalue(); } public static double round(string v, int scale) { if (scale < 0) { throw new illegalargumentexception("the scale must be a positive integer or zero"); } java.math.bigdecimal b = new java.math.bigdecimal(v); java.math.bigdecimal one = new java.math.bigdecimal("1"); return b.divide(one, scale, java.math.bigdecimal.round_half_up).doublevalue(); } }
使用时调用 calculator 类的 conversion()方法,并传入算术表达式参数,即可返回一个 double 类型的值。
使用示例:
public class mathtest { public static void main(string[] args) { string expression = "(0*1--3)-5/-4-(3*(-2.13))"; double result = calculator.conversion(expression); system.out.println(expression + " = " + result); system.out.println(); } }
控制台输出:
(0*1--3)-5/-4-(3*(-2.13)) = 10.64
测试截图:
总结
以上就是本文关于java计算数学表达式代码详解的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!