C++之字符串表達式求值


關於字符串表達式求值,應該是程序猿們機試或者面試時候常見問題之一,昨天參加國內某IT的機試,壓軸便為此題,今天抽空對其進行了研究。

算術表達式中最常見的表示法形式有 中綴、前綴后綴表示法。中綴表示法是書寫表達式的常見方式,而前綴和后綴表示法主要用於計算機科學領域。

中綴表示法
中綴表示法是算術表達式的常規表示法。稱它為 中綴表示法是因為每個操作符都位於其操作數的中間,這種表示法只適用於操作符恰好對應兩個操作數的時候(在操作符是二元操作符如加、減、乘、除以及取模的情況下)。對以中綴表示法書寫的表達式進行語法分析時,需要用括號和優先規則排除多義性。

Syntax: operand1 operator operand2 Example: (A+B)*C-D/(E+F)

前綴表示法
前綴表示法中,操作符寫在操作數的前面。這種表示法經常用於計算機科學,特別是編譯器設計方面。為紀念其發明家 ― Jan Lukasiewicz(請參閱參考資料),這種表示法也稱 波蘭表示法

Syntax  : operator operand1 operand2 Example : -*+ABC/D+EF

后綴表示法
在后綴表示法中,操作符位於操作數后面。后綴表示法也稱 逆波蘭表示法(reverse Polish notation,RPN),因其使表達式求值變得輕松,所以被普遍使用。

Syntax  : operand1 operand2 operator Example : AB+C*DEF+/-

字符串表達式求值,一般來說采用如下方式:

一.  中綴表達式到后綴表達式的轉換

要把表達式從中綴表達式的形式轉換成用后綴表示法表示的等價表達式,必須了解操作符的優先級和結合性。 優先級或者說操作符的強度決定求值順序;優先級高的操作符比優先級低的操作符先求值。 如果所有操作符優先級一樣,那么求值順序就取決於它們的 結合性。操作符的結合性定義了相同優先級操作符組合的順序(從右至左或從左至右)。

Left associativity  : A+B+C = (A+B)+C
Right associativity : A^B^C = A^(B^C)

轉換過程包括用下面的算法讀入中綴表達式的操作數、操作符和括號:

  1. 初始化一個空堆棧,將結果字符串變量置空。
  2. 從左到右讀入中綴表達式,每次一個字符。
  3. 如果字符是操作數,將它添加到結果字符串。
  4. 如果字符是個操作符,彈出(pop)操作符,直至遇見開括號(opening parenthesis)、優先級較低的操作符或者同一優先級的右結合符號。把這個操作符壓入(push)堆棧。
  5. 如果字符是個開括號,把它壓入堆棧。
  6. 如果字符是個閉括號(closing parenthesis),在遇見開括號前,彈出所有操作符,然后把它們添加到結果字符串。
  7. 如果到達輸入字符串的末尾,彈出所有操作符並添加到結果字符串。

二. 后綴表達式求值

對后綴表達式求值比直接對中綴表達式求值簡單。在后綴表達式中,不需要括號,而且操作符的優先級也不再起作用了。您可以用如下算法對后綴表達式求值:

  1. 初始化一個空堆棧
  2. 從左到右讀入后綴表達式
  3. 如果字符是一個操作數,把它壓入堆棧。
  4. 如果字符是個操作符,彈出兩個操作數,執行恰當操作,然后把結果壓入堆棧。如果您不能夠彈出兩個操作數,后綴表達式的語法就不正確。
  5. 到后綴表達式末尾,從堆棧中彈出結果。若后綴表達式格式正確,那么堆棧應該為空。

好了,基本思路討論完畢,我們開始動手寫代碼,此段代碼假設表達式中的預算符只包括四大基本運算符+、-、*、/,為了簡化代碼,我們也假設表達式中的數字只包括1-9。

函數getPostfixExp用來將一個中綴表達式轉換為后綴表達式(也就是逆波蘭式).

string getPostfixExp(string& infix)
{
    stack<char> operator_stack;
    string postfix;
    for (auto p : infix)
    {
        if (isOperator(p))
        {
            while (!operator_stack.empty() && isOperator(operator_stack.top()) && priority(operator_stack.top()) >= priority(p))
            {
                postfix.push_back(operator_stack.top());
                postfix.push_back(' ');
                operator_stack.pop();
            }
            operator_stack.push(p);
        }
        else if (p == '(')
        {
            operator_stack.push(p);
        }
        else if (p == ')')
        {
            while (operator_stack.top() != '(')
            {
                postfix.push_back(operator_stack.top());
                postfix.push_back(' ');
                operator_stack.pop();
            }
            operator_stack.pop();
        }
        else
        {
            postfix.push_back(p);
            postfix.push_back(' ');
        }
    }
    while (!operator_stack.empty())
    {
        postfix.push_back(operator_stack.top());
        postfix.push_back(' ');
        operator_stack.pop();
    }
    postfix.pop_back();
    return postfix;
}

其中isOperator函數如下:

bool isOperator(char ch)
{
    switch(ch)
    {
    case'+':
    case'-':
    case'*':
    case'/':
        return true;
    default:
        return false;
    }
}

其中的priority函數如下:

int priority(char a) {
    int temp;
    if (a == '*' || a == '/')
        temp = 2;
    else if (a == '+' || a == '-')
        temp = 1;
    return temp;
}

得到了后綴表達式,開始我們的求值之旅吧!

int postfixCalculate(string& postfix)
{
    int first, second;
    stack<int> num_stack;
    for (auto p : postfix)
    {
        switch (p)
        {
        //if the item is an operator (+, -, *, or /) then

        //      pop two numbers off the stack

        //      make a calculation:  the second number 
        //            popped-operator-first number

        //      push the result on the stack
        case '*':
            getTwoNums(num_stack, first, second);
            num_stack.push(first * second);
            break;
        case '/':
            getTwoNums(num_stack, first, second);
            num_stack.push(first / second);
            break;
        case '+':
            getTwoNums(num_stack, first, second);
            num_stack.push(first + second);
            break;
        case '-':
            getTwoNums(num_stack, first, second);
            num_stack.push(first - second);
            break;
        case ' ':
            break;
        //   if the item is a number push it on the stack
        default:
            num_stack.push(p - '0');
            break;
        }
    }
    int result = num_stack.top();
    num_stack.pop();
    return result;
}

其中getTwoNums函數如下:

void getTwoNums(stack<int>& num_stack, int& first, int& second)
{
    second = num_stack.top();
    num_stack.pop();

    first = num_stack.top();
    num_stack.pop();
}

好了,全部的代碼結束了,寫個main函數試試吧!

int main()
{
    string infix;
    cin >> infix;
    string postfix = getPostfixExp(infix);
    cout << postfix << endl;
    cout << postfixCalculate(postfix) << endl;
    system("PAUSE");
    return 0;
}

寫在最后的話:

字符串表達式求值方法很多,本文中利用stack結合優先級的方式,解決了這個問題。其他的方法,有表達式樹的方式,編譯原理的書上有講解,大家可以結合原理,自己動手實現生成表達式樹的代碼,然后求值就變得so easy了,當然也有與上面兩者迥然不同的方式,大家舉一反三,多研究!


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM