6

我正在寻找一个可以合并到我正在从事的项目中的 C++ 类。我需要的功能是将字符串操作评估为数字形式:例如“2 + 3*7”应该评估为 23。

我确实意识到我要问的是一种解释器,并且有构建它们的工具,因为我在 CS 方面的背景很差,所以如果你能指出我的现成课程,我将不胜感激。

4

4 回答 4

5

这应该完全符合您的要求。您可以在以下位置对其进行实时测试:http ://www.wowpanda.net/calc

它使用反向波兰表示法并支持:

  • 运算符优先级(5 + 5 * 5 = 30 而不是 50)
  • 括号 ((5 + 5) * 5 = 50)
  • 以下运算符:+、-、*、/

编辑:您可能希望删除底部的 Abs();对于我的需要,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

/***************************************************************************************/
于 2009-12-19T19:59:48.417 回答
3

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

于 2009-12-19T20:30:14.380 回答
1

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

于 2009-12-20T07:00:26.410 回答
0

C++ in Action,除了是一本关于 C++ 的好书外,还包括一个功能齐全的计算器,可以满足您的需要(实际上还有更多)。这本书可以在线免费获得

于 2009-12-19T20:00:26.527 回答