题解 | #表达式求值#

表达式求值

http://www.nowcoder.com/practice/c215ba61c8b1443b996351df929dc4d4

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     * 返回表达式的值
     * @param s string字符串 待计算的表达式
     * @return int整型
     */
    int pre(char ch)
    {
        if (ch == '+')
            return 1;
        else if (ch == '-')
            return 1;
        else if (ch == '*')
            return 2;
        else
            return 2;
    }

    int solve(int v1, int v2, char ch)
    {
        if (ch == '+')
            return v1 + v2;
        else if (ch == '-')
            return v1 - v2;
        else if (ch == '*')
            return v1 * v2;
        else
            return v1 / v2;
    }
    int solve(string s) {
        // write code here
        stack<int> is;
        stack<char> op;
        for (int i = 0; i < s.size(); i++)
        {
            char ch = s[i];
            if (isdigit(ch)){
                int sum = 0;
                int j = i;
                while (j < s.size() && isdigit(s[j])) sum = sum * 10 + (s[j++] - '0');
                is.push(sum);
                i = j - 1;		// 修改索引到最后一个数字,然后执行下一次 for 循环
            }
            else if (ch == '(')
                op.push(ch);
            else if (ch == '+' || ch == '-' || ch == '*' || ch == '/'){
                while (!op.empty() && op.top() != '(' && pre(ch) <= pre(op.top())){
                    int v2 = is.top();
                    is.pop();
                    int v1 = is.top();
                    is.pop();
                    
                    char op1 = op.top();
                    op.pop();
                    
                    int ans = solve(v1, v2, op1);
                    is.push(ans);
                }
                op.push(ch);
            }
            else if (ch == ')'){
                while (!op.empty() && op.top() != '('){
                    int v2 = is.top();
                    is.pop();
                    int v1 = is.top();
                    is.pop();
                    
                    char op1 = op.top();
                    op.pop();
                    
                    int ans = solve(v1, v2, op1);
                    is.push(ans);
                }
                if (!op.empty()){
                    op.pop();
                }
            }
        }
        
        while (!op.empty())
        {
            int v2 = is.top();
            is.pop();
            int v1 = is.top();
            is.pop();

            char op1 = op.top();
            op.pop();

            int ans = solve(v1, v2, op1);
            is.push(ans);
        }
        
        int ans = is.top();
        is.pop();
        
        return ans;
    }
};
全部评论

相关推荐

昨天 00:11
已编辑
广东工业大学 算法工程师
避雷深圳&nbsp;&nbsp;yidao,试用期&nbsp;6&nbsp;个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
球球别再泡了:坏,我单9要了14
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务