224. Basic Calculator

网友投稿 253 2022-09-17

224. Basic Calculator

Implement a basic calculator to evaluate a simple expression string.

The expression string may contain open ( and closing parentheses ), the plus + or minus sign -, non-negative integers and empty spaces .

You may assume that the given expression is always valid.

Some examples:

"1 + 1" = 2" 2-1 + 2 " = 3"(1+(4+5+2)-3)+(6+8)" = 23

Note: Do not use the eval built-in library function.

思路: 遇到 ‘(’ 就把之前的结果和符号push进stack. 遇到’)’就把当前结果*stack中的符号再加上stack中之前的结果.

class Solution { public int calculate(String s) { if(s==null || s.length() == 0) return 0; Stack stack = new Stack(); int res = 0; int sign = 1; for(int i=0; i

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:公关界007:请李云迪“对牛弹琴”,这家“牛厂”的年会太会玩了!
下一篇:768. Max Chunks To Make Sorted II
相关文章

 发表评论

暂时没有评论,来抢沙发吧~