字尾表示式《待修改》

2021-06-26 14:57:20 字數 784 閱讀 7079

#include#include#includeusing namespace std;

// 操作符優先順序

int getweight(char ch)

}// 字首表示式轉換成字尾表示式

void infix2postfix(char infix, char postfix, int size)

if (ch == ')')

// 去除左邊的括號

if (!s.empty())

i++;

continue;

} weight = getweight(ch);

if (weight == 0)

else

else

// 將當前的運算子壓棧

s.push(ch);

}} i++;

} // 彈出剩下的運算子並新增字尾表示式中

while (!s.empty())

postfix[k] = '\0'; // 解釋符

}void gettwooffstack(stack& thestack, int& first, int& second)

int postfixcalculate(string& theexpress)

}int returnval = thestack.top();

thestack.pop();

return returnval;

}// main

int main()

字尾表示式 中綴到字尾表示式

輸入空格跳出迴圈 while k getchar n 字尾表示式 此 僅限於0 9內的加減乘除 include include include define long 10 using namespace std typedef struct stack qstack void init qstac...

字尾表示式

字尾表示式的計算和中綴表示式轉字尾表示式 此處的運算用的是鍊錶的表示方法 以下為三個會涉及到的標頭檔案 error.h 字尾表示式 created by kyle.yang on 14 12 2.ifndef error h define error h include using namespac...

字尾表示式

對於乙個算術表示式我們的一般寫法是這樣的 3 4 5 6 這中寫法是中序表示式 而後序表示式則是將運算子放在運算元的後面,如 3 4 5 6 可以看出後序表示式中沒有括號,只表達了計算的順序,而這個順序恰好就是計算器中的一般計算順序。建立乙個棧s 從左到右讀表示式,如果讀到運算元就將它壓入棧s中,如...