摘要:支持括號小數負數也行運算數字運算符沒有括號正常運算括號內的值都取完了,刪除括號左右括號齊全先算括號內的一個包含數字的列表和一個包含運算符的列表形式可能會有空字符串符號列表同時出現從左至右運算同時出現從左
public static void main(String[] args) { // 支持括號 小數 負數 String statement = "-10/(4.5+5.5)*(-4-6+20)/-2"; // 10/(-2) 也行 System.out.println(calculate(statement)); } @SuppressWarnings("unchecked") private static double calculate(String statement){ Object[] result = filter(statement); // 運算數字 List總結一下numList = (List) result[0]; // 運算符 List symbolList = (List) result[1]; while (!symbolList.isEmpty()) { int index = symbolList.indexOf("("); if (index == -1) { // 沒有括號正常運算 realCalculate(numList, symbolList); } else { int right = symbolList.indexOf(")"); if (right == index + 1) { // 括號內的值都取完了,刪除括號 symbolList.remove(index); symbolList.remove(index); continue; } // 左右括號齊全 先算括號內的 if (right != -1) { List doubles = numList.subList(index, right); List subChars = symbolList.subList(index + 1, right); realCalculate(doubles, subChars); } } } return numList.get(0); } /** * @return 一個包含數字的列表和一個包含運算符的列表 */ private static Object[] filter(String statement) { // 形式 123,456,789 可能會有空字符串 StringBuilder nums = new StringBuilder(); // 符號列表 List symbolList = new LinkedList<>(); for (int i = 0; i < statement.length(); i++) { char c = statement.charAt(i); if (c == "-" && (i == 0 || statement.charAt(i - 1) == "(" || statement.charAt(i - 1) == "*" || statement.charAt(i - 1) == "/")) { nums.append(c).append(statement.charAt(i + 1)); i++; } else if (Character.isDigit(c) || c == ".") { nums.append(c); } else { symbolList.add(c); nums.append(","); } } String[] ss = nums.toString().split(","); List numList = new ArrayList<>(); for (String num : ss) { if (!num.isEmpty()) { numList.add(Double.parseDouble(num)); } } return new Object[]{numList, symbolList}; } private static void realCalculate(List numList, List symbolList) { while (!symbolList.isEmpty()) { int index = symbolList.indexOf("*"), tmp; double value = 0.0D; if (index != -1 && (tmp = symbolList.indexOf("/")) != -1) { // 同時出現 * / 從左至右運算 if (index < tmp) { value = numList.remove(index) * numList.remove(index); } else { index = tmp; value = numList.remove(index) / numList.remove(index); } } else if (index != -1) { value = numList.remove(index) * numList.remove(index); } else if ((index = symbolList.indexOf("/")) != -1) { value = numList.remove(index) / numList.remove(index); } else if ((index = symbolList.indexOf("+")) != -1 && (tmp = symbolList.indexOf("-")) != -1) { // 同時出現 + - 從左至右運算 if (index < tmp) { value = numList.remove(index) + numList.remove(index); } else { index = tmp; value = numList.remove(index) - numList.remove(index); } } else if (index != -1) { value = numList.remove(index) + numList.remove(index); } else if ((index = symbolList.indexOf("-")) != -1) { value = numList.remove(index) - numList.remove(index); } // 刪除運算符 symbolList.remove(index); // 將計算結果放回列表,待下次計算 numList.add(index, value); } }
我的方法是先從括號的算起,根據運算符索引查找運算數索引,從而進行計算,算完后刪除運算符和運算數,并將運算結果放回待運算的列表
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/75051.html
摘要:多數運算符都是由標點符號表示,比如和。通常會根據需要對操作數進行類型轉換左值是一個古老的屬于,它是指表達式只能出現在賦值運算符的左側。也稱為嚴格相等運算符,它用來檢測兩個操作數是否嚴格相等。運算符的檢測規則是和運算符的求反。 源代碼: https://github.com/RobinQu/Programing-In-Javascript/blob/master/chapters/...
摘要:原始表達式直接量保留字變量原始表達式表達式的最小單位表達式中的短語,解釋器會將其計算為一個結果對象和數據的初始化表達式對象直接量和數組直接量,它們和布爾直接量不同,它們不是原始表達式函數定義表達式函數直接量也不是原始表達式屬性訪問表達式語法 1 原始表達式 直接量、保留字、變量 原始表達式(primary expression):表達式的最小單位 表達式:JavaScript中的短語...
摘要:函數定義表達式。對象創建表達式。需要注意的是,大多數運算符都是由標點符號表示的,比如和。也就是說,空字符串將被當作,布爾值將被當作。對于和,則分別調用函數并取得字符串和。 表達式 表達式是由數字、運算符、數字分組符號(如括號)、自由變量和約束變量等以能求得數值的有意義排列方法所得的組合。JavaScript 表達式主要有以下幾種形式: 原始表達式:常量、變量、保留字。 對象、數組初始...
摘要:函數定義表達式。對象創建表達式。也就是說,空字符串將被當作,布爾值將被當作。如果有一個操作數是對象數值或布爾值,則調用它們的方法取得相應的字符串值,然后再應用前面關于字符串的規則。對于和,則分別調用函數并取得字符串和。 表達式 表達式是由數字、運算符、數字分組符號(如括號)、自由變量和約束變量等以能求得數值的有意義排列方法所得的組合。JavaScript 表達式主要有以下幾種形式: ...
摘要:用一行表示它們的關系就是運算對象運算符表達式語句運算對象和運算符構成表達式,表達式構成語句運算對象運算對象就是由各種對象構成的集合,這些對象里面有些是常量,有些是變量。 編程的本質就是數據和運算,數據由基本數據類型、數據結構來表示,運算就是對這些數據的各種操作,基本的加減乘除、是非判斷、流程控制等等。這些操作就是今天我們要講的運算符、表達式和語句。 showImg(http://upl...
閱讀 3588·2021-09-13 10:28
閱讀 1937·2021-08-10 09:43
閱讀 1010·2019-08-30 15:44
閱讀 3178·2019-08-30 13:14
閱讀 1830·2019-08-29 16:56
閱讀 2938·2019-08-29 16:35
閱讀 2843·2019-08-29 12:58
閱讀 864·2019-08-26 13:46