數據結構實驗(C++)之桟(1)

(1)設計一個算法,將一般算術表達式轉化爲逆波蘭表達式,並求逆波蘭表達式的值。 代碼: #include<cstdio> #include<cmath> #include<iostream> using namespace std; const int StackSize=50; int Compare(char op) { if(op=='(') return 1; if(op==')') re
相關文章
相關標籤/搜索