题解 | #计算表达式#写了两个钟,太垃圾了

计算表达式

https://www.nowcoder.com/practice/7b18aa6b7cc14f8eaae6b8acdebf890b

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <stack>
#include <map>
using namespace std;

map<char, int> mymap = {
    {'+', 0}, {'-', 0}, {'/', 1}, {'*', 1}
};

float jisusan(float x, float y, char oper) {
    float res;
    switch (oper) {
        case '+':
            res = x + y;
            break;
        case '-':
            res = x - y;
            break;
        case '*':
            res = x * y;
            break;
        case '/':
            res = x / y;
            break;
    }
    return res;
}


int main() {
    stack<float> numStack;
    stack<char> operStack; //operator 运算符
    string expr; //expression 表达式
    while (getline(cin, expr)) {
        for (int i = 0; i < expr.size(); i++) {
            if (expr[i] >= '0' && expr[i] <= '9') {
                //表明这是一个数字 可能有很多位
                int j = i;
                while (j < expr.size() && expr[j] >= '0' && expr[j] <= '9') {
                    j++;
                    continue;
                }
                //此时j越界,或者j是操作符 i 到 j - 1为数字
                float num = 0;
                while (i != j) {
                    num *= 10;
                    num += (expr[i] - '0');
                    i++;
                }
                i--;
                numStack.push(num);
            } else {
                if (!operStack.empty()) {
                    while (!operStack.empty() && mymap[operStack.top()] >= mymap[expr[i]]) {
                        //栈顶的优先级 >= 当前的优先级
                        //弹出两个数和操作符计算结果然后放到numstack
                        float a1 =  numStack.top();
                        numStack.pop();
                        float a2 = numStack.top();
                        numStack.pop();
                        char c = operStack.top();
                        operStack.pop();
                        float res = jisusan(a2, a1, c);
                        numStack.push(res);


                    }
                    operStack.push(expr[i]);
                } else {
                    operStack.push(expr[i]);
                }
            }

        }
        while (!operStack.empty()) {
            float a1 =  numStack.top();
            numStack.pop();
            float a2 = numStack.top();
            numStack.pop();
            char c = operStack.top();
            operStack.pop();
            float res = jisusan(a2, a1, c);
            numStack.push(res);
        }
        float a1 =  numStack.top();
        numStack.pop();
        //printf("%f\n", a1); //这里用cout方便点
        cout << a1 << endl;



    }

}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

11-09 14:54
已编辑
华南农业大学 产品经理
大拿老师:这个简历,连手机号码和照片都没打码,那为什么关键要素求职职位就不写呢? 从上往下看,都没看出自己到底是产品经理的简历,还是电子硬件的简历? 这是一个大问题,当然,更大的问题是实习经历的描述是不对的 不要只是去写实习流程,陈平,怎么去开会?怎么去讨论? 面试问的是你的产品功能点,是怎么设计的?也就是要写项目的亮点,有什么功能?这个功能有什么难处?怎么去解决的? 实习流程大家都一样,没什么优势,也没有提问点,没有提问,你就不得分 另外,你要明确你投的是什么职位,如果投的是产品职位,你的项目经历写的全都是跟产品无关的,那你的简历就没用 你的面试官必然是一个资深的产品经理,他不会去问那些计算机类的编程项目 所以这种四不像的简历,在校招是大忌
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务