【leetcode】227. Basic Calculator II

     Given a string s which represents an expression, evaluate this expression and return its value.  The integer division should truncate toward zero. You may assume that the given expression is always valid. All intermediate results will be in the range of [-231, 231 - 1]. Note: You are not allowed to use any built-in function which evaluates strings as mathematical expressions, such as eval().

Example 1:

Input: s = "3+2*2"
Output: 7

Example 2:

Input: s = " 3/2 "
Output: 1

Example 3:

Input: s = " 3+5 / 2 "
Output: 5

Constraints:

  • 1 <= s.length <= 3 * 105
  • s consists of integers and operators ('+', '-', '*', '/') separated by some number of spaces.
  • s represents a valid expression.
  • All the integers in the expression are non-negative integers in the range [0, 231 - 1].
  • The answer is guaranteed to fit in a 32-bit integer.

   这道题是将一个输入的字符串进行转换,计算字符串表示的公式。这道题只有"*"和"/",没有括号来改变计算的优先级。我一开始的计划是用两个栈分别存储数字,和运算符,运算符只存储“+”号和“-”号,乘号和除号直接将符号前后的数进行乘或者除法计算。最后根据符号栈来计算剩余数字的加减计算。

  后面发现不需要存储“+”和“-”号的符号栈,如果是“+”号,“+”后面的数字直接存储,“-”后面的数字直接乘符号加进行,这样就节省了空间。

  这道题还需要注意下代码的编写逻辑,如果当前遇到运算符,是存储上一个运算符后面的数字。

  还有个类似的题目 Basic Calculator 只有“+”,“-”,但是存在“()”影响操作顺序。

class Solution {
public:
    int calculate(string s) {
        long res=0,num=0,n=s.size();
        char op='+'; // 初始化加号
        stack<int> st;
        for(int i=0;i<n;++i){
            if(s[i]>='0'){
                num=num*10+s[i]-'0'; //计算运算数
            }
            if((s[i]<'0' && s[i]!=' ')||i==n-1){ //遇到下一个运算符
                if(op=='+') st.push(num); // 按照之前运算符来进行操作
                if(op=='-') st.push(-num);
                if(op=='*'||op=='/'){
                    int tmp=(op=='*')?st.top()*num:st.top()/num; //只有这样 栈顶的数字 和当前的num才是 *左右的带运算数
                    st.pop();
                    st.push(tmp);
                }
                op=s[i];
                num=0;
        } 
    }
     while(!st.empty()){
         res+=st.top();
         st.pop();
     }
        return res;
    }
 
};

 

  

 

上一篇:CentOS 8 上设置 Nginx 服务器配置块


下一篇:linux dumpcore (imx6)