简体   繁体   English

C ++简单操作(+, - ,/,*)评估类

[英]C++ simple operations (+,-,/,*) evaluation class

I am looking for a C++ class I can incorporate into a project I am working on. 我正在寻找一个C ++类,我可以将其纳入我正在进行的项目中。 the functionality I need is evaluation of string operations to numerical form: for example "2 + 3*7" should evaluate to 23. 我需要的功能是将字符串操作评估为数字形式:例如“2 + 3 * 7”应评估为23。

I do realize what I am asking is a kind of an interpreter, and that there are tools to build them, by my background in CS is very poor so I would appreciate if you can point me to a ready made class . 我确实意识到我所要求的是一种翻译,并且有一些工具来构建它们,我在CS中的背景非常差,所以如果你能指出我已经准备好的课程,我将不胜感激。

This should do exactly what you want. 这应该完全符合你的要求。 You can test it live at: http://www.wowpanda.net/calc 您可以在以下网址进行测试: http//www.wowpanda.net/calc

It uses Reverse Polish Notation and supports: 它使用反向波兰表示法并支持:

  • Operator precedence (5 + 5 * 5 = 30 not 50) 运算符优先级(5 + 5 * 5 = 30不是50)
  • Parens ((5 + 5) * 5 = 50) Parens((5 + 5)* 5 = 50)
  • The following operators: +, -, *, / 以下运算符:+, - ,*,/

EDIT : you'll probably want to remove the Abs() at the bottom; 编辑 :你可能想要删除底部的Abs(); for my needs 0 - 5 should be 5 and not -5! 对于我的需要0 - 5应该是5而不是-5!

static bool Rpn(const string expression, vector<string> &output)
{
    output.clear();
    char *end;
    vector<string> operator_stack;
    bool expecting_operator = false;

    for (const char *ptr = expression.c_str(); *ptr; ++ptr) {
        if (IsSpace(*ptr))
            continue;

        /* Is it a number? */
        if (!expecting_operator) {
            double number = strtod(ptr, &end);
            if (end != ptr) {
                /* Okay, it's a number */
                output.push_back(boost::lexical_cast<string>(number));
                ptr = end - 1;
                expecting_operator = true;
                continue;
            }
        }

        if (*ptr == '(') {
            operator_stack.push_back("(");
            expecting_operator = false;
            continue;
        }

        if (*ptr == ')') {
            while (operator_stack.size() && operator_stack.back() != "(") {
                output.push_back(operator_stack.back());
                operator_stack.pop_back();
            }

            if (!operator_stack.size())
                return false; /* Mismatched parenthesis */

            expecting_operator = true;
            operator_stack.pop_back(); /* Pop '(' */
            continue;
        }

        if (*ptr == '+' || *ptr == '-') {
            while (operator_stack.size() && IsMathOperator(operator_stack.back())) {
                output.push_back(operator_stack.back());
                operator_stack.pop_back();
            }

            operator_stack.push_back(boost::lexical_cast<string>(*ptr));
            expecting_operator = false;
            continue;
        }

        if (*ptr == '*' || *ptr == '/') {
            while (operator_stack.size() && (operator_stack.back() == "*" || operator_stack.back() == "/")) {
                output.push_back(operator_stack.back());
                operator_stack.pop_back();
            }

            operator_stack.push_back(boost::lexical_cast<string>(*ptr));
            expecting_operator = false;
            continue;
        }

        /* Error */
        return false;
    }

    while (operator_stack.size()) {
        if (!IsMathOperator(operator_stack.back()))
            return false;

        output.push_back(operator_stack.back());
        operator_stack.pop_back();
    }

    return true;
} // Rpn

/***************************************************************************************/

bool Calc(const string expression, double &output)
{
    vector<string> rpn;

    if (!Rpn(expression, rpn))
        return false;

    vector<double> tmp;
    for (size_t i = 0; i < rpn.size(); ++i) {
        if (IsMathOperator(rpn[i])) {
            if (tmp.size() < 2)
                return false;
            double two = tmp.back();
            tmp.pop_back();
            double one = tmp.back();
            tmp.pop_back();
            double result;

            switch (rpn[i][0]) {
                case '*':
                    result = one * two;
                    break;

                case '/':
                    result = one / two;
                    break;

                case '+':
                    result = one + two;
                    break;

                case '-':
                    result = one - two;
                    break;

                default:
                    return false;
            }

            tmp.push_back(result);
            continue;
        }

        tmp.push_back(atof(rpn[i].c_str()));
        continue;
    }

    if (tmp.size() != 1)
        return false;

    output = Abs(tmp.back());
    return true;
} // Calc

/***************************************************************************************/

boost :: spirit带有一个计算器示例,可以满足您的需求: http//www.boost.org/doc/libs/1_33_1/libs/spirit/example/fundamental/ast_calc.cpp

muParser是用C ++编写的, 可以满足您的需求。

C++ in Action, in addition to being a great book on C++, includes a fully working calculator, doing what you need (and actually much more). C ++ in Action,除了是一本关于C ++的好书之外,还包括一个完全可用的计算器,可以满足您的需求(实际上更多)。 And the book is available for free online 这本书可以在线免费获取

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM