摘要:复杂度思路用两个来分别记录当前的结果和操作符注意每一次统计当前的的时候,要看一下下一位的操作符。有一种的方法,是表示的是匹配任意的空白符,包括空格,制表符,换行符,中文全角空格等。也可以用更简单的方法,。
LeetCode[227] Basic Calculator II
StackImplement a basic calculator to evaluate a simple expression string.
The expression string contains only non-negative integers, +, -, *, /
operators and empty spaces . The integer division should truncate
toward zero.You may assume that the given expression is always valid.
Some examples:
"3+2*2" = 7 " 3/2 " = 1 " 3+5 / 2 " = 5
复杂度
O(N), O(N)
思路
用两个stack来分别记录当前的结果和操作符(operator), 注意每一次统计当前的operand的时候,要看一下下一位的操作符。如果下一位是high operator("+"或"/"), 就要先把当前的数和操作符都要先push回stack保留数据,如果当前stack不为空且已经有高位运算符在stack的顶部,就先计算一次重新计算当前的数字,再考虑之后的运算。
有一种replace all multiple spaces with one space的方法,是s.replaceAll("s+",""), s 表示的是匹配任意的空白符,包括空格,制表符(Tab),换行符,中文全角空格等。也可以用更简单的方法,replaceAll(" +", "")。
代码
public double calculator(String s) { // delete multiple spaces s = s.trim().replaceAll(" +", ""); char[] arr = s.toCharArray(); Stackres = new Stack<>(); Stack operator = new Stack<>(); res.push(0.0); operator.push("+"); for(int i = 0; i < arr.length; i ++) { double val = 0; int j = i; while(j < arr.length && Character.isDigit(arr[j])) { val *= 10; val += arr[j] - "0"; j ++; } // if(!operator.isEmpty() && isHighOp(operator.peek())) { double temp = getValue(res.pop(), val,operator.pop()); val = temp; } if(j < arr.length && isHighOp(arr[j])) { res.push(val); operator.push(arr[j]); } else { double temp = getValue(res.pop(), val, operator.pop()); res.push(temp); if(j < arr.length) operator.push(arr[j]); } i = j; } // notice the format; DecimalFormal df = new DecimalFormat("#.##"); return Double.parseDouble(df.format(res.pop())); } public boolean isHighOp(Character ch) { return ch == "*" || ch == "/"; } public double getValue(double op1, double op2, Character ch) { if(ch == "+") return op1 + op2; if(ch == "-") return op1 - op2; if(ch == "*") return op1 * op2; return op1 / op2; }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/66321.html
Problem Implement a basic calculator to evaluate a simple expression string. The expression string contains only non-negative integers, +, -, *, / operators and empty spaces . The integer division sho...
摘要:题目链接,就是感觉条件有点多简单点的写法,把直接用存在里面,就存成,存成题目链接这题就是碰到在加减后面怎么处理的问题。用一个来表示之前的,所以碰到现在是乘的时候就,除类似。 224. Basic Calculator 题目链接:https://leetcode.com/problems... stack,就是感觉条件有点多 public class Solution { pub...
摘要:但是乘除就会有问题,要特殊处理。这题只有加减和括号,优先级就是括号里的先计算,所有我们把括号里的内容当做操作的基本单位。遇到遇到和,遇到遇到,弹出再遇到弹出,这里只是把对数字的操作变成了对的操作,去括号的逻辑一样。 The expression string contains only non-negative integers, +, -, *, / operators and em...
摘要:难点在于多了括号后如何处理正负号。但是每多一个括号,都要记录下这个括号所属的正负号,而每当一个括号结束,我们还要知道出来以后所在的括号所属的正负号。 Basic Calculator I 最新更新请见: https://yanjia.li/zh/2019/01/... Implement a basic calculator to evaluate a simple express...
摘要:复杂度思路将字符串先转换成后缀表达式,再将其出来。 Leetcode[224] Basic Calculator Implement a basic calculator to evaluate a simple expression string. The expression string may contain open ( and closing parentheses ),...
阅读 1609·2021-10-09 09:44
阅读 2686·2021-10-08 10:04
阅读 2429·2021-09-26 09:55
阅读 3785·2021-09-22 10:02
阅读 3257·2019-08-29 17:08
阅读 1041·2019-08-29 15:08
阅读 2929·2019-08-26 13:52
阅读 3252·2019-08-26 13:34